diff --git a/azure-cli2017.pyproj b/azure-cli2017.pyproj
index 1c87f84254c..7949c648584 100644
--- a/azure-cli2017.pyproj
+++ b/azure-cli2017.pyproj
@@ -13,7 +13,8 @@
Standard Python launcher
MSBuild|env|$(MSBuildProjectFullPath)
False
- --version
+
+
False
diff --git a/scripts/dependency/requirements.Darwin.external.txt b/scripts/dependency/requirements.Darwin.external.txt
index 1b86f8cfbcd..a174ecb8ec2 100644
--- a/scripts/dependency/requirements.Darwin.external.txt
+++ b/scripts/dependency/requirements.Darwin.external.txt
@@ -39,7 +39,7 @@ azure-mgmt-marketplaceordering==0.1.0
azure-mgmt-media==1.0.0rc1
azure-mgmt-monitor==0.5.2
azure-mgmt-msi==0.2.0
-azure-mgmt-network==2.2.1
+azure-mgmt-network==2.3.0
azure-mgmt-nspkg==2.0.0
azure-mgmt-policyinsights==0.1.0
azure-mgmt-rdbms==1.3.0
diff --git a/scripts/dependency/requirements.Linux.external.txt b/scripts/dependency/requirements.Linux.external.txt
index a2b54bb934a..2eb588261c3 100644
--- a/scripts/dependency/requirements.Linux.external.txt
+++ b/scripts/dependency/requirements.Linux.external.txt
@@ -39,7 +39,7 @@ azure-mgmt-marketplaceordering==0.1.0
azure-mgmt-media==1.0.0rc1
azure-mgmt-monitor==0.5.2
azure-mgmt-msi==0.2.0
-azure-mgmt-network==2.2.1
+azure-mgmt-network==2.3.0
azure-mgmt-nspkg==2.0.0
azure-mgmt-policyinsights==0.1.0
azure-mgmt-rdbms==1.3.0
diff --git a/src/command_modules/azure-cli-container/HISTORY.rst b/src/command_modules/azure-cli-container/HISTORY.rst
index 5a5bfa86f9c..00abbc7bd1e 100644
--- a/src/command_modules/azure-cli-container/HISTORY.rst
+++ b/src/command_modules/azure-cli-container/HISTORY.rst
@@ -3,6 +3,10 @@
Release History
===============
+0.3.9
++++++
+* Minor fixes
+
0.3.8
+++++
* Show identity when exporting a container group to yaml
diff --git a/src/command_modules/azure-cli-container/setup.py b/src/command_modules/azure-cli-container/setup.py
index 883a3d26209..79f04772ba2 100644
--- a/src/command_modules/azure-cli-container/setup.py
+++ b/src/command_modules/azure-cli-container/setup.py
@@ -14,7 +14,7 @@
logger.warn("Wheel is not available, disabling bdist_wheel hook")
cmdclass = {}
-VERSION = "0.3.8"
+VERSION = "0.3.9"
CLASSIFIERS = [
'Development Status :: 4 - Beta',
@@ -34,7 +34,7 @@
'azure-mgmt-containerinstance==1.2.1',
'azure-mgmt-loganalytics==0.2.0',
'azure-mgmt-resource==2.0.0',
- 'azure-mgmt-network==2.2.1',
+ 'azure-mgmt-network==2.3.0',
'azure-mgmt-authorization==0.50.0',
'azure-cli-core',
'pyyaml>=3.13',
diff --git a/src/command_modules/azure-cli-network/HISTORY.rst b/src/command_modules/azure-cli-network/HISTORY.rst
index 71f40b0c4c7..c04235d3861 100644
--- a/src/command_modules/azure-cli-network/HISTORY.rst
+++ b/src/command_modules/azure-cli-network/HISTORY.rst
@@ -3,6 +3,15 @@
Release History
===============
+2.2.9
++++++
+* `application-gateway`: Added `root-cert` subcommands to handle trusted root certifcates.
+* `application-gateway create/update`:
+ Added `--min-capacity` for configuring autoscale on v2 app gateways.
+ Added `--custom-error-pages` for configuring custom error pages.
+* `application-gateway create`: Added `--zones` for availability zone support.
+* `application-gateway waf-config set`: Added arguments `--file-upload-limit`, `--max-request-body-size` and `--request-body-check`.
+
2.2.8
+++++
* Deprecated `network interface-endpoint` command names in favor of `network private-endpoint`.
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 ec98ab38df3..ad2cf062df8 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
@@ -686,8 +686,46 @@
- name: Gets SSL predefined policy with the specified policy name.
text: az network application-gateway ssl-policy predefined show -n AppGwSslPolicy20170401
"""
+# endregion
+
+# region Application Gateway Trusted Root Certs
+helps['network application-gateway root-cert'] = """
+ type: group
+ short-summary: Manage trusted root certificates of an application gateway.
+"""
+helps['network application-gateway root-cert create'] = """
+ type: command
+ short-summary: Upload a trusted root certificate.
+"""
+helps['network application-gateway root-cert delete'] = """
+ type: command
+ short-summary: Delete a trusted root certificate.
+ examples:
+ - name: Delete a trusted root certificate.
+ text: az network application-gateway root-cert delete -g MyResourceGroup --gateway-name MyAppGateway -n MyRootCert
+"""
+helps['network application-gateway root-cert list'] = """
+ type: command
+ short-summary: List trusted root certificates.
+ examples:
+ - name: List trusted root certificates.
+ text: az network application-gateway root-cert list -g MyResourceGroup --gateway-name MyAppGateway
+"""
+
+helps['network application-gateway root-cert show'] = """
+ type: command
+ short-summary: Get the details of a trusted root certificate.
+ examples:
+ - name: Get the details of a trusted root certificate.
+ text: az network application-gateway root-cert show -g MyResourceGroup --gateway-name MyAppGateway -n MyRootCert
+"""
+
+helps['network application-gateway root-cert update'] = """
+ type: command
+ short-summary: Update a trusted root certificate.
+"""
# endregion
# region Application Gateway URL path map
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 6e6430d3e7c..c57f152b5c0 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
@@ -11,14 +11,14 @@
from knack.arguments import CLIArgumentType, ignore_type
from azure.cli.core.commands.parameters import (get_location_type, get_resource_name_completion_list,
- tags_type, zone_type,
+ tags_type, zone_type, zones_type,
file_type, get_resource_group_completion_list,
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._validators import (
dns_zone_name_type,
- validate_auth_cert, validate_cert, validate_inbound_nat_rule_id_list,
+ validate_ssl_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,
@@ -27,7 +27,7 @@
get_network_watcher_from_vm, get_network_watcher_from_location,
get_asg_validator, get_vnet_validator, validate_ip_tags, validate_ddos_name_or_id,
validate_service_endpoint_policy, validate_delegations, validate_subresource_list,
- validate_er_peer_circuit, validate_ag_address_pools)
+ validate_er_peer_circuit, validate_ag_address_pools, validate_custom_error_pages)
from azure.mgmt.trafficmanager.models import MonitorProtocol, ProfileStatus
from azure.cli.command_modules.network._completers import (
subnet_completion_list, get_lb_subresource_completion_list, get_ag_subresource_completion_list,
@@ -93,7 +93,10 @@ def load_arguments(self, _):
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('min_capacity', min_api='2018-07-01', help='Lower bound on the number of application gateway instances.', type=int)
c.ignore('virtual_network_type', 'private_ip_address_allocation')
+ c.argument('zones', zones_type)
+ c.argument('custom_error_pages', min_api='2018-08-01', nargs='+', help='Space-separated list of custom error pages in `STATUS_CODE=URL` format.', validator=validate_custom_error_pages)
with self.argument_context('network application-gateway', arg_group='Network') as c:
c.argument('virtual_network_name', virtual_network_name_type)
@@ -104,7 +107,7 @@ def load_arguments(self, _):
with self.argument_context('network application-gateway', arg_group='Gateway') as c:
c.argument('servers', ag_servers_type)
- c.argument('capacity', help='The number of instances to use with the application gateway.')
+ c.argument('capacity', help='The number of instances to use with the application gateway.', type=int)
c.argument('http_settings_cookie_based_affinity', cookie_based_affinity_type, help='Enable or disable HTTP settings cookie-based affinity.')
c.argument('http_settings_protocol', http_protocol_type, help='The HTTP settings protocol.')
c.argument('enable_http2', arg_type=get_three_state_flag(positive_label='Enabled', negative_label='Disabled'), options_list=['--http2'], help='Use HTTP2 for the application gateway.', min_api='2017-10-01')
@@ -128,7 +131,7 @@ def load_arguments(self, _):
with self.argument_context('network application-gateway update', arg_group=None) as c:
c.argument('sku', default=None)
c.argument('enable_http2')
- c.argument('capacity', help='The number of instances to use with the application gateway.')
+ c.argument('capacity', help='The number of instances to use with the application gateway.', type=int)
ag_subresources = [
{'name': 'auth-cert', 'display': 'authentication certificate', 'ref': 'authentication_certificates'},
@@ -143,6 +146,8 @@ def load_arguments(self, _):
{'name': 'url-path-map', 'display': 'URL path map', 'ref': 'url_path_maps'},
{'name': 'redirect-config', 'display': 'redirect configuration', 'ref': 'redirect_configurations'}
]
+ if self.supported_api_version(min_api='2018-08-01'):
+ ag_subresources.append({'name': 'root-cert', 'display': 'trusted root certificate', 'ref': 'trusted_root_certificates'})
for item in ag_subresources:
with self.argument_context('network application-gateway {}'.format(item['name'])) as c:
@@ -165,8 +170,12 @@ def load_arguments(self, _):
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)
+ for scope in ['auth-cert', 'root-cert']:
+ with self.argument_context('network application-gateway {}'.format(scope)) as c:
+ c.argument('cert_data', options_list='--cert-file', help='Certificate file path.', type=file_type, completer=FilesCompleter(), validator=validate_cert)
+
+ with self.argument_context('network application-gateway root-cert') as c:
+ c.argument('keyvault_secret', help='KeyVault secret ID.')
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.')
@@ -225,7 +234,7 @@ def load_arguments(self, _):
c.argument('url_path_map', help='The name or ID of the URL path map.', completer=get_ag_subresource_completion_list('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_data', options_list=('--cert-file',), type=file_type, completer=FilesCompleter(), help='The path to the PFX certificate file.', validator=validate_ssl_cert)
c.argument('cert_password', help='Certificate password.')
with self.argument_context('network application-gateway ssl-policy') as c:
@@ -263,6 +272,11 @@ def load_arguments(self, _):
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'))
+ with self.argument_context('network application-gateway waf-config', min_api='2018-08-01') as c:
+ c.argument('file_upload_limit', help='File upload size limit in MB.', type=int)
+ c.argument('max_request_body_size', help='Max request body size in KB.', type=int)
+ c.argument('request_body_check', arg_type=get_three_state_flag(), help='Allow WAF to check the request body.')
+
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.')
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 3cd15d6de60..251a012a85f 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
@@ -36,7 +36,8 @@ def build_application_gateway_resource(cmd, name, location, tags, sku_name, sku_
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,
- connection_draining_timeout, enable_http2):
+ connection_draining_timeout, enable_http2, min_capacity, zones,
+ custom_error_pages):
# set the default names
frontend_ip_name = 'appGatewayFrontendIP'
@@ -142,6 +143,11 @@ def _ag_subresource_id(_type, name):
ag_properties.update({'sslCertificates': [ssl_cert]})
if enable_http2 and cmd.supported_api_version(min_api='2017-10-01'):
ag_properties.update({'enableHttp2': enable_http2})
+ if min_capacity and cmd.supported_api_version(min_api='2018-07-01'):
+ ag_properties.update({'autoscaleConfiguration': {'minCapacity': min_capacity}})
+ del ag_properties['sku']['capacity']
+ if custom_error_pages and cmd.supported_api_version(min_api='2018-08-01'):
+ ag_properties.update({'customErrorConfigurations': custom_error_pages})
ag = {
'type': 'Microsoft.Network/applicationGateways',
@@ -152,6 +158,8 @@ def _ag_subresource_id(_type, name):
'dependsOn': [],
'properties': ag_properties
}
+ if cmd.supported_api_version(min_api='2018-08-01'):
+ ag.update({'zones': zones})
return ag
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 117d58a5c2d..153614791c8 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
@@ -179,11 +179,12 @@ def read_base_64_file(filename):
return str(base64_data)
-def validate_auth_cert(namespace):
- namespace.cert_data = read_base_64_file(namespace.cert_data)
+def validate_cert(namespace):
+ if namespace.cert_data:
+ namespace.cert_data = read_base_64_file(namespace.cert_data)
-def validate_cert(namespace):
+def validate_ssl_cert(namespace):
params = [namespace.cert_data, namespace.cert_password]
if all([not x for x in params]):
# no cert supplied -- use HTTP
@@ -609,22 +610,18 @@ def process_ag_url_path_map_rule_create_namespace(cmd, namespace): # pylint: di
def process_ag_create_namespace(cmd, namespace):
get_default_location_from_resource_group(cmd, 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)(cmd, namespace)
-
validate_address_prefixes(namespace)
-
if namespace.public_ip_address:
get_public_ip_validator(
has_type_field=True, allow_none=True, allow_new=True, default_none=True)(cmd, namespace)
-
- validate_cert(namespace)
-
+ validate_ssl_cert(namespace)
validate_tags(namespace)
+ validate_custom_error_pages(namespace)
def process_auth_create_namespace(cmd, namespace):
@@ -1266,3 +1263,18 @@ def validate_ag_address_pools(cmd, namespace):
child_name_1=item)
ids.append(item)
namespace.app_gateway_backend_address_pools = ids
+
+
+def validate_custom_error_pages(namespace):
+
+ if not namespace.custom_error_pages:
+ return
+
+ values = []
+ for item in namespace.custom_error_pages:
+ try:
+ (code, url) = item.split('=')
+ values.append({'statusCode': code, 'customErrorPageUrl': url})
+ except (ValueError, TypeError):
+ raise CLIError('usage error: --custom-error-pages STATUS_CODE=URL [STATUS_CODE=URL ...]')
+ namespace.custom_error_pages = values
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 15623cb681d..563ce022ee6 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
@@ -291,6 +291,8 @@ def load_command_table(self, _):
{'prop': 'probes', 'name': 'probe'},
{'prop': 'url_path_maps', 'name': 'url-path-map', 'validator': process_ag_url_path_map_create_namespace}
]
+ if self.supported_api_version(min_api='2018-08-01'):
+ subresource_properties.append({'prop': 'trusted_root_certificates', 'name': 'root-cert'})
def _make_singular(value):
try:
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 e79e9b9f68f..771a36ca1fe 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
@@ -156,7 +156,8 @@ def create_application_gateway(cmd, application_gateway_name, resource_group_nam
subnet='default', 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,
- connection_draining_timeout=0, enable_http2=None):
+ connection_draining_timeout=0, enable_http2=None, min_capacity=2, zones=None,
+ custom_error_pages=None):
from azure.cli.core.util import random_string
from azure.cli.core.commands.arm import ArmTemplateBuilder
from azure.cli.command_modules.network._template_builder import (
@@ -207,7 +208,7 @@ def create_application_gateway(cmd, application_gateway_name, resource_group_nam
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,
- connection_draining_timeout, enable_http2)
+ connection_draining_timeout, enable_http2, min_capacity, zones, custom_error_pages)
app_gateway_resource['dependsOn'] = ag_dependencies
master_template.add_variable(
'appGwID',
@@ -232,7 +233,8 @@ def create_application_gateway(cmd, application_gateway_name, resource_group_nam
return sdk_no_wait(no_wait, client.create_or_update, resource_group_name, deployment_name, properties)
-def update_application_gateway(instance, sku=None, capacity=None, tags=None, enable_http2=None):
+def update_application_gateway(instance, sku=None, capacity=None, tags=None, enable_http2=None, min_capacity=None,
+ custom_error_pages=None):
if sku is not None:
instance.sku.name = sku
instance.sku.tier = sku.split('_', 1)[0] if 'v2' not in sku else sku
@@ -242,6 +244,10 @@ def update_application_gateway(instance, sku=None, capacity=None, tags=None, ena
instance.tags = tags
if enable_http2 is not None:
instance.enable_http2 = enable_http2
+ if min_capacity is not None:
+ instance.autoscale_configuration.min_capacity = min_capacity
+ if custom_error_pages is not None:
+ instance.custom_error_configurations = custom_error_pages
return instance
@@ -637,6 +643,26 @@ def show_ag_ssl_policy(cmd, resource_group_name, application_gateway_name):
resource_group_name, application_gateway_name).ssl_policy
+def create_ag_trusted_root_certificate(cmd, resource_group_name, application_gateway_name, item_name, no_wait=False,
+ cert_data=None, keyvault_secret=None):
+ ApplicationGatewayTrustedRootCertificate = cmd.get_models('ApplicationGatewayTrustedRootCertificate')
+ ncf = network_client_factory(cmd.cli_ctx).application_gateways
+ ag = ncf.get(resource_group_name, application_gateway_name)
+ root_cert = ApplicationGatewayTrustedRootCertificate(name=item_name, data=cert_data,
+ keyvault_secret_id=keyvault_secret)
+ _upsert(ag, 'trusted_root_certificates', root_cert, 'name')
+ return sdk_no_wait(no_wait, ncf.create_or_update,
+ resource_group_name, application_gateway_name, ag)
+
+
+def update_ag_trusted_root_certificate(instance, parent, item_name, cert_data=None, keyvault_secret=None):
+ if cert_data is not None:
+ instance.data = cert_data
+ if keyvault_secret is not None:
+ instance.keyvault_secret_id = keyvault_secret
+ return parent
+
+
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,
@@ -756,7 +782,8 @@ def set_ag_waf_config_2017_03_01(cmd, resource_group_name, application_gateway_n
firewall_mode=None,
rule_set_type='OWASP', rule_set_version=None,
disabled_rule_groups=None,
- disabled_rules=None, no_wait=False):
+ disabled_rules=None, no_wait=False,
+ request_body_check=None, max_request_body_size=None, file_upload_limit=None):
ApplicationGatewayWebApplicationFirewallConfiguration = cmd.get_models(
'ApplicationGatewayWebApplicationFirewallConfiguration')
ncf = network_client_factory(cmd.cli_ctx).application_gateways
@@ -793,6 +820,11 @@ def _flatten(collection, expand_property_fn):
disabled_groups.append(disabled_group)
ag.web_application_firewall_configuration.disabled_rule_groups = disabled_groups
+ if cmd.supported_api_version(min_api='2018-08-01'):
+ ag.web_application_firewall_configuration.request_body_check = request_body_check
+ ag.web_application_firewall_configuration.max_request_body_size_in_kb = max_request_body_size
+ ag.web_application_firewall_configuration.file_upload_limit_in_mb = file_upload_limit
+
return sdk_no_wait(no_wait, ncf.create_or_update, resource_group_name, application_gateway_name, ag)
@@ -2739,17 +2771,19 @@ def run_network_configuration_diagnostic(cmd, client, watcher_rg, watcher_name,
direction=None, protocol=None, source=None, destination=None,
destination_port=None, queries=None,
resource_group_name=None, resource_type=None, parent=None):
- TrafficQuery = cmd.get_models('TrafficQuery')
+ NetworkConfigurationDiagnosticParameters, NetworkConfigurationDiagnosticProfile = \
+ cmd.get_models('NetworkConfigurationDiagnosticParameters', 'NetworkConfigurationDiagnosticProfile')
+
if not queries:
- queries = [TrafficQuery(
+ queries = [NetworkConfigurationDiagnosticProfile(
direction=direction,
protocol=protocol,
source=source,
destination=destination,
destination_port=destination_port
)]
- return client.get_network_configuration_diagnostic(watcher_rg, watcher_name, resource, queries)
-
+ params = NetworkConfigurationDiagnosticParameters(target_resource_id=resource, profiles=queries)
+ return client.get_network_configuration_diagnostic(watcher_rg, watcher_name, params)
# endregion
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_ag_zone.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_ag_zone.yaml
new file mode 100644
index 00000000000..541e4b34766
--- /dev/null
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_ag_zone.yaml
@@ -0,0 +1,551 @@
+interactions:
+- request:
+ body: !!python/unicode '{"location": "westus2", "tags": {"date": "2018-11-09T21:58:15Z",
+ "product": "azurecli", "cause": "automation"}}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [group create]
+ Connection: [keep-alive]
+ Content-Length: ['111']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/2.7.10 (Darwin-18.2.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.5.1
+ resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_zone000001?api-version=2018-05-01
+ response:
+ body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_zone000001","name":"cli_test_ag_zone000001","location":"westus2","tags":{"date":"2018-11-09T21:58:15Z","product":"azurecli","cause":"automation"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['385']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 09 Nov 2018 21:58:15 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [network public-ip create]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/2.7.10 (Darwin-18.2.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.5.1
+ resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_zone000001?api-version=2018-05-01
+ response:
+ body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_zone000001","name":"cli_test_ag_zone000001","location":"westus2","tags":{"date":"2018-11-09T21:58:15Z","product":"azurecli","cause":"automation"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['385']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 09 Nov 2018 21:58:16 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ x-content-type-options: [nosniff]
+ status: {code: 200, message: OK}
+- request:
+ body: !!python/unicode '{"sku": {"name": "Standard"}, "properties": {"publicIPAllocationMethod":
+ "Static", "publicIPAddressVersion": "IPv4", "idleTimeoutInMinutes": 4}, "location":
+ "westus2"}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [network public-ip create]
+ Connection: [keep-alive]
+ Content-Length: ['167']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/2.7.10 (Darwin-18.2.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.5.1
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_zone000001/providers/Microsoft.Network/publicIPAddresses/pubip1?api-version=2018-08-01
+ response:
+ body: {string: !!python/unicode "{\r\n \"name\": \"pubip1\",\r\n \"id\": \"\
+ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_zone000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
+ ,\r\n \"etag\": \"W/\\\"14c3de8a-9017-456b-b3db-83020e1b0a2d\\\"\",\r\n \
+ \ \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"f4768654-ce80-4952-a594-d54c6e24276a\"\
+ ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
+ : \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n\
+ \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\"\
+ : {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n\
+ }"}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9a6dc1fb-4356-4e3d-a969-967edb7936e7?api-version=2018-08-01']
+ cache-control: [no-cache]
+ content-length: ['688']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 09 Nov 2018 21:58:17 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-writes: ['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]
+ User-Agent: [python/2.7.10 (Darwin-18.2.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.5.1
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9a6dc1fb-4356-4e3d-a969-967edb7936e7?api-version=2018-08-01
+ response:
+ body: {string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 09 Nov 2018 21: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]
+ x-content-type-options: [nosniff]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [network public-ip create]
+ Connection: [keep-alive]
+ User-Agent: [python/2.7.10 (Darwin-18.2.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.5.1
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_zone000001/providers/Microsoft.Network/publicIPAddresses/pubip1?api-version=2018-08-01
+ response:
+ body: {string: !!python/unicode "{\r\n \"name\": \"pubip1\",\r\n \"id\": \"\
+ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_zone000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
+ ,\r\n \"etag\": \"W/\\\"602ee7e4-faac-43c8-9f7a-43e05ef9161a\\\"\",\r\n \
+ \ \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"f4768654-ce80-4952-a594-d54c6e24276a\"\
+ ,\r\n \"ipAddress\": \"40.91.91.68\",\r\n \"publicIPAddressVersion\"\
+ : \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\"\
+ : 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\
+ ,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\
+ \r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['722']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 09 Nov 2018 21:58:21 GMT']
+ etag: [W/"602ee7e4-faac-43c8-9f7a-43e05ef9161a"]
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-content-type-options: [nosniff]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [network application-gateway create]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/2.7.10 (Darwin-18.2.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.5.1
+ resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_zone000001?api-version=2018-05-01
+ response:
+ body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_zone000001","name":"cli_test_ag_zone000001","location":"westus2","tags":{"date":"2018-11-09T21:58:15Z","product":"azurecli","cause":"automation"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['385']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 09 Nov 2018 21:58:20 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ x-content-type-options: [nosniff]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [network application-gateway create]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/2.7.10 (Darwin-18.2.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.5.1
+ resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2018-05-01&$filter=resourceGroup%20eq%20%27cli_test_ag_zone000001%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FvirtualNetworks%27
+ response:
+ body: {string: !!python/unicode '{"value":[]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['12']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 09 Nov 2018 21:58:21 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ x-content-type-options: [nosniff]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [network application-gateway create]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/2.7.10 (Darwin-18.2.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.5.1
+ resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2018-05-01&$filter=resourceGroup%20eq%20%27cli_test_ag_zone000001%27%20and%20name%20eq%20%27pubip1%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FpublicIPAddresses%27
+ response:
+ body: {string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_zone000001/providers/Microsoft.Network/publicIPAddresses/pubip1","name":"pubip1","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"},"location":"westus2"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['342']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 09 Nov 2018 21:58:21 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ x-content-type-options: [nosniff]
+ status: {code: 200, message: OK}
+- request:
+ body: !!python/unicode '{"properties": {"mode": "Incremental", "parameters": {},
+ "template": {"parameters": {}, "outputs": {"applicationGateway": {"type": "object",
+ "value": "[reference(''ag1'')]"}}, "variables": {"appGwID": "[resourceId(''Microsoft.Network/applicationGateways'',
+ ''ag1'')]"}, "contentVersion": "1.0.0.0", "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "resources": [{"name": "ag1Vnet", "tags": {}, "apiVersion": "2015-06-15", "location":
+ "westus2", "dependsOn": [], "type": "Microsoft.Network/virtualNetworks", "properties":
+ {"subnets": [{"name": "default", "properties": {"addressPrefix": "10.0.0.0/24"}}],
+ "addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}}}, {"name": "ag1", "tags":
+ {}, "apiVersion": "2018-08-01", "zones": ["1", "3"], "location": "westus2",
+ "dependsOn": ["Microsoft.Network/virtualNetworks/ag1Vnet"], "type": "Microsoft.Network/applicationGateways",
+ "properties": {"sku": {"tier": "Standard_v2", "name": "Standard_v2"}, "frontendPorts":
+ [{"name": "appGatewayFrontendPort", "properties": {"Port": 80}}], "requestRoutingRules":
+ [{"Name": "rule1", "properties": {"backendAddressPool": {"id": "[concat(variables(''appGwID''),
+ ''/backendAddressPools/appGatewayBackendPool'')]"}, "backendHttpSettings": {"id":
+ "[concat(variables(''appGwID''), ''/backendHttpSettingsCollection/appGatewayBackendHttpSettings'')]"},
+ "RuleType": "Basic", "httpListener": {"id": "[concat(variables(''appGwID''),
+ ''/httpListeners/appGatewayHttpListener'')]"}}}], "backendHttpSettingsCollection":
+ [{"name": "appGatewayBackendHttpSettings", "properties": {"CookieBasedAffinity":
+ "disabled", "connectionDraining": {"drainTimeoutInSec": 1, "enabled": false},
+ "Protocol": "Http", "Port": 80}}], "backendAddressPools": [{"name": "appGatewayBackendPool"}],
+ "gatewayIPConfigurations": [{"name": "appGatewayFrontendIP", "properties": {"subnet":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_zone000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
+ "frontendIPConfigurations": [{"name": "appGatewayFrontendIP", "properties":
+ {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_zone000001/providers/Microsoft.Network/publicIPAddresses/pubip1"}}}],
+ "autoscaleConfiguration": {"minCapacity": 2}, "httpListeners": [{"name": "appGatewayHttpListener",
+ "properties": {"FrontendPort": {"Id": "[concat(variables(''appGwID''), ''/frontendPorts/appGatewayFrontendPort'')]"},
+ "Protocol": "http", "FrontendIpConfiguration": {"Id": "[concat(variables(''appGwID''),
+ ''/frontendIPConfigurations/appGatewayFrontendIP'')]"}, "SslCertificate": null}}]}}]}}}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [network application-gateway create]
+ Connection: [keep-alive]
+ Content-Length: ['2767']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/2.7.10 (Darwin-18.2.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.5.1
+ resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_zone000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01
+ response:
+ body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_zone000001/providers/Microsoft.Resources/deployments/ag_deploy_PqPhPkMg6puPJzWQAHC5ksoiUMrWnmRp","name":"ag_deploy_PqPhPkMg6puPJzWQAHC5ksoiUMrWnmRp","properties":{"templateHash":"8762907664061169091","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2018-11-09T21:58:23.9691234Z","duration":"PT0.4913545S","correlationId":"3aa0981b-6a60-4662-a25d-5e8d604c8179","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"applicationGateways","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_zone000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"ag1Vnet"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_zone000001/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_zone000001/providers/Microsoft.Resources/deployments/ag_deploy_PqPhPkMg6puPJzWQAHC5ksoiUMrWnmRp/operationStatuses/08586598061819998475?api-version=2018-05-01']
+ cache-control: [no-cache]
+ content-length: ['1311']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 09 Nov 2018 21:58:24 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-writes: ['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]
+ User-Agent: [python/2.7.10 (Darwin-18.2.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.5.1
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_zone000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2018-08-01
+ response:
+ body: {string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The
+ Resource ''Microsoft.Network/applicationGateways/ag1'' under resource group
+ ''cli_test_ag_zone000001'' was not found."}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['220']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 09 Nov 2018 21:58:24 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-content-type-options: [nosniff]
+ 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]
+ User-Agent: [python/2.7.10 (Darwin-18.2.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.5.1
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_zone000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2018-08-01
+ response:
+ body: {string: !!python/unicode "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_zone000001/providers/Microsoft.Network/applicationGateways/ag1\"\
+ ,\r\n \"etag\": \"W/\\\"386fd071-0313-4764-aade-f1aaa5d50d07\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
+ \ \"westus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\",\r\n \"\
+ 3\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"10d004b8-d145-4820-a543-601ac613f885\",\r\n \
+ \ \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\"\
+ \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_zone000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
+ ,\r\n \"etag\": \"W/\\\"386fd071-0313-4764-aade-f1aaa5d50d07\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_zone000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
+ \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\
+ \r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"trustedRootCertificates\"\
+ : [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\"\
+ : \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_zone000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
+ ,\r\n \"etag\": \"W/\\\"386fd071-0313-4764-aade-f1aaa5d50d07\\\"\"\
+ ,\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendIPConfigurations\"\
+ ,\r\n \"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_zone000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
+ \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_zone000001/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_zone000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
+ ,\r\n \"etag\": \"W/\\\"386fd071-0313-4764-aade-f1aaa5d50d07\\\"\"\
+ ,\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_zone000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
+ \r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\
+ \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_zone000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
+ ,\r\n \"etag\": \"W/\\\"386fd071-0313-4764-aade-f1aaa5d50d07\\\"\"\
+ ,\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_zone000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendAddressPools\"\
+ \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_zone000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
+ ,\r\n \"etag\": \"W/\\\"386fd071-0313-4764-aade-f1aaa5d50d07\\\"\"\
+ ,\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_zone000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\
+ \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_zone000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
+ ,\r\n \"etag\": \"W/\\\"386fd071-0313-4764-aade-f1aaa5d50d07\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_zone000001/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_zone000001/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_zone000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\
+ \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_zone000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ ,\r\n \"etag\": \"W/\\\"386fd071-0313-4764-aade-f1aaa5d50d07\\\"\"\
+ ,\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_zone000001/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_zone000001/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_zone000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
+ \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\
+ \r\n }\r\n ],\r\n \"probes\": [],\r\n \"redirectConfigurations\"\
+ : [],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 2\r\n\
+ \ }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['9105']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 09 Nov 2018 21:58:54 GMT']
+ etag: [W/"386fd071-0313-4764-aade-f1aaa5d50d07"]
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-content-type-options: [nosniff]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [network application-gateway show]
+ Connection: [keep-alive]
+ User-Agent: [python/2.7.10 (Darwin-18.2.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.5.1
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_zone000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2018-08-01
+ response:
+ body: {string: !!python/unicode "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_zone000001/providers/Microsoft.Network/applicationGateways/ag1\"\
+ ,\r\n \"etag\": \"W/\\\"386fd071-0313-4764-aade-f1aaa5d50d07\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
+ \ \"westus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\",\r\n \"\
+ 3\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"10d004b8-d145-4820-a543-601ac613f885\",\r\n \
+ \ \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\"\
+ \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_zone000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
+ ,\r\n \"etag\": \"W/\\\"386fd071-0313-4764-aade-f1aaa5d50d07\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_zone000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
+ \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\
+ \r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"trustedRootCertificates\"\
+ : [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\"\
+ : \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_zone000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
+ ,\r\n \"etag\": \"W/\\\"386fd071-0313-4764-aade-f1aaa5d50d07\\\"\"\
+ ,\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendIPConfigurations\"\
+ ,\r\n \"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_zone000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
+ \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_zone000001/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_zone000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
+ ,\r\n \"etag\": \"W/\\\"386fd071-0313-4764-aade-f1aaa5d50d07\\\"\"\
+ ,\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_zone000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
+ \r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\
+ \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_zone000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
+ ,\r\n \"etag\": \"W/\\\"386fd071-0313-4764-aade-f1aaa5d50d07\\\"\"\
+ ,\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_zone000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendAddressPools\"\
+ \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_zone000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
+ ,\r\n \"etag\": \"W/\\\"386fd071-0313-4764-aade-f1aaa5d50d07\\\"\"\
+ ,\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_zone000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\
+ \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_zone000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
+ ,\r\n \"etag\": \"W/\\\"386fd071-0313-4764-aade-f1aaa5d50d07\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_zone000001/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_zone000001/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_zone000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\
+ \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_zone000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ ,\r\n \"etag\": \"W/\\\"386fd071-0313-4764-aade-f1aaa5d50d07\\\"\"\
+ ,\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_zone000001/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_zone000001/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_zone000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
+ \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\
+ \r\n }\r\n ],\r\n \"probes\": [],\r\n \"redirectConfigurations\"\
+ : [],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 2\r\n\
+ \ }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['9105']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 09 Nov 2018 21:58:54 GMT']
+ etag: [W/"386fd071-0313-4764-aade-f1aaa5d50d07"]
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-content-type-options: [nosniff]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [group delete]
+ Connection: [keep-alive]
+ Content-Length: ['0']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/2.7.10 (Darwin-18.2.0-x86_64-i386-64bit) msrest/0.6.1 msrest_azure/0.5.1
+ resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51]
+ accept-language: [en-US]
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_zone000001?api-version=2018-05-01
+ response:
+ body: {string: !!python/unicode ''}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Fri, 09 Nov 2018 21:58:56 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGQUc6NUZaT05FM0NHQ0FFSFJYSTJETzRMVDVWTFJNS1REU3xGRjVCRkQ5QUVFQzYzOEM0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2018-05-01']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-deletes: ['14999']
+ status: {code: 202, message: Accepted}
+version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_watcher_vm.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_watcher_vm.yaml
index f6a8acf6e77..fb290156316 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_watcher_vm.yaml
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/recordings/test_network_watcher_vm.yaml
@@ -1,7 +1,7 @@
interactions:
- request:
body: '{"location": "westcentralus", "tags": {"product": "azurecli", "cause":
- "automation", "date": "2018-09-10T16:36:55Z"}}'
+ "automation", "date": "2018-11-12T17:59:08Z"}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
@@ -9,24 +9,23 @@ interactions:
Connection: [keep-alive]
Content-Length: ['117']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python
- AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nw_vm000001?api-version=2018-05-01
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001","name":"cli_test_nw_vm000001","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-09-10T16:36:55Z"},"properties":{"provisioningState":"Succeeded"}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001","name":"cli_test_nw_vm000001","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-11-12T17:59:08Z"},"properties":{"provisioningState":"Succeeded"}}'}
headers:
cache-control: [no-cache]
content-length: ['391']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:36:57 GMT']
+ date: ['Mon, 12 Nov 2018 17:59:11 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-subscription-writes: ['1188']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: '{"location": "westcentralus"}'
@@ -37,9 +36,8 @@ interactions:
Connection: [keep-alive]
Content-Length: ['29']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python
- AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/NetworkWatcherRg?api-version=2018-05-01
@@ -49,14 +47,14 @@ interactions:
cache-control: [no-cache]
content-length: ['192']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:36:59 GMT']
+ date: ['Mon, 12 Nov 2018 17:59:12 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
transfer-encoding: [chunked]
vary: [Accept-Encoding]
x-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-subscription-writes: ['1189']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 200, message: OK}
- request:
body: null
@@ -65,21 +63,29 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [network watcher configure]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2018-08-01
response:
- body: {string: '{"value":[]}'}
+ body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"westcentralus-watcher\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRg/providers/Microsoft.Network/networkWatchers/westcentralus-watcher\",\r\n
+ \ \"etag\": \"W/\\\"c0384146-ae17-4aaf-8472-24219c22f493\\\"\",\r\n \"type\":
+ \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westcentralus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"flowLogs\": [],\r\n \"runningOperationIds\": []\r\n }\r\n
+ \ }\r\n ]\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['12']
+ content-length: ['527']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:37:00 GMT']
+ date: ['Mon, 12 Nov 2018 17: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]
x-content-type-options: [nosniff]
status: {code: 200, message: OK}
@@ -92,30 +98,32 @@ interactions:
Connection: [keep-alive]
Content-Length: ['29']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRg/providers/Microsoft.Network/networkWatchers/westcentralus-watcher?api-version=2018-08-01
response:
body: {string: "{\r\n \"name\": \"westcentralus-watcher\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRg/providers/Microsoft.Network/networkWatchers/westcentralus-watcher\",\r\n
- \ \"etag\": \"W/\\\"dfa57600-4ad2-4e84-838a-c24b475b7ecf\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"c0384146-ae17-4aaf-8472-24219c22f493\\\"\",\r\n \"type\":
\"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westcentralus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"flowLogs\":
[],\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/fa444bcb-4f81-4ce3-8ec5-902f83004200?api-version=2018-08-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/db327b71-2288-4a09-b0b5-5ee31ff3409b?api-version=2018-08-01']
cache-control: [no-cache]
content-length: ['454']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:37:01 GMT']
+ date: ['Mon, 12 Nov 2018 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]
x-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-subscription-writes: ['1193']
- status: {code: 201, message: Created}
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ status: {code: 200, message: OK}
- request:
body: null
headers:
@@ -123,15 +131,15 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [network watcher configure]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2018-08-01
response:
body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"westcentralus-watcher\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRg/providers/Microsoft.Network/networkWatchers/westcentralus-watcher\",\r\n
- \ \"etag\": \"W/\\\"5f3dbfde-65ab-449d-8205-e421ec05b4a0\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"c0384146-ae17-4aaf-8472-24219c22f493\\\"\",\r\n \"type\":
\"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westcentralus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"flowLogs\": [],\r\n \"runningOperationIds\": []\r\n }\r\n
@@ -140,7 +148,7 @@ interactions:
cache-control: [no-cache]
content-length: ['527']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:37:01 GMT']
+ date: ['Mon, 12 Nov 2018 17:59:16 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -157,19 +165,18 @@ interactions:
CommandName: [vm create]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python
- AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nw_vm000001?api-version=2018-05-01
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001","name":"cli_test_nw_vm000001","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-09-10T16:36:55Z"},"properties":{"provisioningState":"Succeeded"}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001","name":"cli_test_nw_vm000001","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-11-12T17:59:08Z"},"properties":{"provisioningState":"Succeeded"}}'}
headers:
cache-control: [no-cache]
content-length: ['391']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:37:02 GMT']
+ date: ['Mon, 12 Nov 2018 17:59:16 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -182,7 +189,7 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
- User-Agent: [python-requests/2.19.1]
+ User-Agent: [python-requests/2.20.1]
method: GET
uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json
response:
@@ -223,9 +230,9 @@ interactions:
content-length: ['2235']
content-security-policy: [default-src 'none'; style-src 'unsafe-inline'; sandbox]
content-type: [text/plain; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:37:02 GMT']
+ date: ['Mon, 12 Nov 2018 17:59:17 GMT']
etag: ['"60d07919b4224266adafb81340896eea100dc887"']
- expires: ['Mon, 10 Sep 2018 16:42:02 GMT']
+ expires: ['Mon, 12 Nov 2018 18:04:17 GMT']
source-age: ['0']
strict-transport-security: [max-age=31536000]
vary: ['Authorization,Accept-Encoding']
@@ -233,12 +240,12 @@ interactions:
x-cache: [MISS]
x-cache-hits: ['0']
x-content-type-options: [nosniff]
- x-fastly-request-id: [9abe8242b3811a6ee57804bb0f9a86bd825ad6fa]
+ x-fastly-request-id: [656a59b05d5cfd21e7ee7331b4aef2284ec89a8a]
x-frame-options: [deny]
x-geo-block-list: ['']
- x-github-request-id: ['C322:55B1:4853E:4C558:5B969DAE']
- x-served-by: [cache-dfw18623-DFW]
- x-timer: ['S1536597423.955860,VS0,VE38']
+ x-github-request-id: ['4BAE:1F7C:2495F:277C5:5BE9BF75']
+ x-served-by: [cache-dfw18637-DFW]
+ x-timer: ['S1542045558.587218,VS0,VE63']
x-xss-protection: [1; mode=block]
status: {code: 200, message: OK}
- request:
@@ -248,8 +255,8 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [vm create]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01
@@ -259,7 +266,7 @@ interactions:
cache-control: [no-cache]
content-length: ['12']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:37:03 GMT']
+ date: ['Mon, 12 Nov 2018 17:59:17 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -274,9 +281,8 @@ interactions:
CommandName: [vm create]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python
- AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2018-05-01
@@ -286,13 +292,13 @@ interactions:
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2017-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2017-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"publicIPAddresses","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2017-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"East
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2017-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"East
US 2","zones":["1","2","3"]},{"location":"Central US","zones":["1","2","3"]},{"location":"West
Europe","zones":["1","2","3"]},{"location":"France Central","zones":["1","2","3"]},{"location":"Southeast
Asia","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"North
@@ -302,7 +308,7 @@ interactions:
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2017-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2017-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"interfaceEndpoints","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
@@ -313,32 +319,38 @@ interactions:
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2017-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2017-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"networkSecurityGroups","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2017-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2017-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"applicationSecurityGroups","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2017-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2017-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove"},{"resourceType":"serviceEndpointPolicies","locations":["West
+ US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
+ Central US","South Central US","Central US","East US 2","Japan East","Japan
+ West","Brazil South","Australia East","Australia Southeast","Central India","South
+ India","West India","Canada Central","Canada East","West Central US","West
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2018-01-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"networkIntentPolicies","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
US 2","UK West","UK South","Korea Central","Korea South","France Central","France
- South"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2018-04-01","capabilities":"CrossResourceGroupResourceMove,
+ South"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2018-04-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
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2017-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2017-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"publicIPPrefixes","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
@@ -354,165 +366,175 @@ interactions:
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30"],"defaultApiVersion":"2017-09-01","capabilities":"CrossResourceGroupResourceMove,
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30"],"defaultApiVersion":"2017-09-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2017-09-01","capabilities":"CrossResourceGroupResourceMove,
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2017-09-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"networkWatchers/lenses","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2017-09-01","capabilities":"CrossResourceGroupResourceMove,
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2017-09-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"networkWatchers/pingMeshes","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2017-09-01","capabilities":"CrossResourceGroupResourceMove,
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2017-09-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"virtualNetworkGateways","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2017-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2017-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"localNetworkGateways","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2017-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2017-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"connections","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2017-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2017-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"}],"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","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2017-09-01","zoneMappings":[{"location":"East
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2017-09-01","zoneMappings":[{"location":"East
US 2","zones":["1","2","3"]},{"location":"Central US","zones":["1","2","3"]},{"location":"West
Europe","zones":["1","2","3"]},{"location":"France Central","zones":["1","2","3"]},{"location":"Southeast
Asia","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"North
- Europe","zones":["1","2","3"]}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}]},{"resourceType":"locations/operations","locations":[],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}]},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West
+ Europe","zones":["1","2","3"]}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}]},{"resourceType":"locations/operations","locations":[],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}]},{"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
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/usages","locations":["West
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/usages","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}]},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}]},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"]},{"resourceType":"locations/availableDelegations","locations":["West
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"]},{"resourceType":"locations/availableDelegations","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01"]},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"]},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01"]},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"]},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01"]},{"resourceType":"locations/validateResourceOwnership","locations":["West
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"]},{"resourceType":"locations/validateResourceOwnership","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01"]},{"resourceType":"locations/setResourceOwnership","locations":["West
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"]},{"resourceType":"locations/setResourceOwnership","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01"]},{"resourceType":"locations/effectiveResourceOwnership","locations":["West
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"]},{"resourceType":"locations/effectiveResourceOwnership","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-04-01","capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-04-01"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-04-01"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-04-01"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-04-01"},{"resourceType":"expressRouteCircuits","locations":["West
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01"},{"resourceType":"expressRouteCircuits","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2017-09-01","capabilities":"None"},{"resourceType":"expressRouteServiceProviders","locations":[],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":[],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"]},{"resourceType":"applicationGatewayAvailableSslOptions","locations":[],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"]},{"resourceType":"routeFilters","locations":["West
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2017-09-01","capabilities":"None"},{"resourceType":"expressRouteServiceProviders","locations":[],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":[],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"]},{"resourceType":"applicationGatewayAvailableSslOptions","locations":[],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"]},{"resourceType":"routeFilters","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"defaultApiVersion":"2016-12-01","capabilities":"None"},{"resourceType":"bgpServiceCommunities","locations":[],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]},{"resourceType":"azureFirewalls","locations":["West
- US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
- Central US","South Central US","Central US","East US 2","Brazil South","Australia
- East","Australia Southeast","Central India","South India","West India","Canada
- Central","Canada East","West Central US","West US 2","UK West","UK South","France
- Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2018-04-01","capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove"},{"resourceType":"azureFirewallFqdnTags","locations":[],"apiVersions":["2018-08-01"]},{"resourceType":"virtualNetworkTaps","locations":["West
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"defaultApiVersion":"2016-12-01","capabilities":"None"},{"resourceType":"bgpServiceCommunities","locations":[],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]},{"resourceType":"virtualWans","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2017-09-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove"},{"resourceType":"vpnSites","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2018-02-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"networkProfiles","locations":["West
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2017-09-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove"},{"resourceType":"virtualHubs","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central
- US","East US","East US 2","North Central US","South Central US","West US","North
- Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil
- South","Australia East","Australia Southeast"],"apiVersions":["2018-08-01"],"defaultApiVersion":"2018-08-01"},{"resourceType":"locations/bareMetalTenants","locations":["West
- Central US"],"apiVersions":["2018-08-01","2018-07-01"]},{"resourceType":"serviceEndpointPolicies","locations":["West
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2017-11-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove"},{"resourceType":"vpnGateways","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2018-01-01","capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove"},{"resourceType":"dnszones","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-11-30","2015-11-15-preview","2015-05-04-preview"],"defaultApiVersion":"2016-04-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-11-30","2015-11-15-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-11-30","2015-11-15-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"getDnsResourceReference","locations":["global"],"apiVersions":["2018-05-01"],"defaultApiVersion":"2018-05-01"},{"resourceType":"internalNotify","locations":["global"],"apiVersions":["2018-05-01"],"defaultApiVersion":"2018-05-01"},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-11-30","2015-11-15-preview","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-11-30","2015-11-15-preview","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-11-30","2015-11-15-preview","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-11-30","2015-11-15-preview","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-11-30","2015-11-15-preview","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-11-30","2015-11-15-preview","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-11-30","2015-11-15-preview","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-11-30","2015-11-15-preview","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-11-30","2015-11-15-preview","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01"],"defaultApiVersion":"2017-09-01"},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-11-30","2015-11-15-preview","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-11-30","2015-11-15-preview","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"virtualWans","locations":["West
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2017-11-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove"},{"resourceType":"azureFirewalls","locations":["West
+ US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
+ Central US","South Central US","Central US","East US 2","Brazil South","Australia
+ East","Australia Southeast","Central India","South India","West India","Canada
+ Central","Canada East","West Central US","West US 2","UK West","UK South","France
+ Central","Japan West","Japan East","Korea Central","Korea South"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2018-04-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove"},{"resourceType":"azureFirewallFqdnTags","locations":[],"apiVersions":["2018-08-01"]},{"resourceType":"virtualNetworkTaps","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2017-09-01","capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove"},{"resourceType":"vpnSites","locations":["West
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2017-09-01","capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove"},{"resourceType":"virtualHubs","locations":["West
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2018-02-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"networkProfiles","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2017-11-01","capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove"},{"resourceType":"vpnGateways","locations":["West
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2018-08-01"],"defaultApiVersion":"2018-08-01"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central
+ US","East US","East US 2","North Central US","South Central US","West US","North
+ Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil
+ South","Australia East","Australia Southeast"],"apiVersions":["2018-08-01"],"defaultApiVersion":"2018-08-01"},{"resourceType":"frontdoors","locations":["global","Central
+ US","East US","East US 2","North Central US","South Central US","West US","North
+ Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil
+ South","Australia East","Australia Southeast"],"apiVersions":["2018-08-01"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["global","Central
+ US","East US","East US 2","North Central US","South Central US","West US","North
+ Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil
+ South","Australia East","Australia Southeast"],"apiVersions":["2018-08-01"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove"},{"resourceType":"webApplicationFirewallPolicies","locations":["global","Central
+ US","East US","East US 2","North Central US","South Central US","West US","North
+ Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil
+ South","Australia East","Australia Southeast"],"apiVersions":["2018-08-01"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove"},{"resourceType":"locations/bareMetalTenants","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01","2018-10-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2017-11-01","capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove"},{"resourceType":"expressRouteGateways","locations":["West
+ US 2","UK West","UK South","Korea Central","Korea South","France Central"],"apiVersions":["2018-08-01","2018-07-01"]},{"resourceType":"dnszones","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-11-30","2015-11-15-preview","2015-05-04-preview"],"defaultApiVersion":"2016-04-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-11-30","2015-11-15-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-11-30","2015-11-15-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"getDnsResourceReference","locations":["global"],"apiVersions":["2018-05-01"],"defaultApiVersion":"2018-05-01"},{"resourceType":"internalNotify","locations":["global"],"apiVersions":["2018-05-01"],"defaultApiVersion":"2018-05-01"},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-11-30","2015-11-15-preview","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-11-30","2015-11-15-preview","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-11-30","2015-11-15-preview","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-11-30","2015-11-15-preview","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-11-30","2015-11-15-preview","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-11-30","2015-11-15-preview","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-11-30","2015-11-15-preview","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-11-30","2015-11-15-preview","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-11-30","2015-11-15-preview","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01"],"defaultApiVersion":"2017-09-01"},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-11-30","2015-11-15-preview","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-11-30","2015-11-15-preview","2015-05-04-preview"],"defaultApiVersion":"2016-04-01"},{"resourceType":"expressRouteGateways","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
@@ -521,9 +543,9 @@ interactions:
CrossSubscriptionResourceMove"}],"registrationState":"Registered"}'}
headers:
cache-control: [no-cache]
- content-length: ['41179']
+ content-length: ['43099']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:37:03 GMT']
+ date: ['Mon, 12 Nov 2018 17:59:18 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -538,9 +560,8 @@ interactions:
CommandName: [vm create]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python
- AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkSecurityGroups/nsg1?api-version=2018-08-01
@@ -551,7 +572,7 @@ interactions:
cache-control: [no-cache]
content-length: ['223']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:37:03 GMT']
+ date: ['Mon, 12 Nov 2018 17:59:19 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -597,25 +618,24 @@ interactions:
Connection: [keep-alive]
Content-Length: ['3369']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python
- AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nw_vm000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_8xvr5J0fV2gGxwyXN1TA6ByRSzUh3zOs","name":"vm_deploy_8xvr5J0fV2gGxwyXN1TA6ByRSzUh3zOs","properties":{"templateHash":"9574290551217684268","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2018-09-10T16:37:06.7703588Z","duration":"PT0.6740982S","correlationId":"00a038d0-edcf-4a38-918a-468dde861b0f","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_nw_vm000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkSecurityGroups/nsg1","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"nsg1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_nFWe2cudN0m2SjmGqcPycM1GzzElt5Ct","name":"vm_deploy_nFWe2cudN0m2SjmGqcPycM1GzzElt5Ct","properties":{"templateHash":"10059377131485329376","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2018-11-12T17:59:22.3974052Z","duration":"PT1.0634059S","correlationId":"c43d1b2b-fade-4e88-a693-442de051aba4","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_nw_vm000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkSecurityGroups/nsg1","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"nsg1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/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_nw_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_8xvr5J0fV2gGxwyXN1TA6ByRSzUh3zOs/operationStatuses/08586650094593813749?api-version=2018-05-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nw_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_nFWe2cudN0m2SjmGqcPycM1GzzElt5Ct/operationStatuses/08586595613241436417?api-version=2018-05-01']
cache-control: [no-cache]
- content-length: ['2771']
+ content-length: ['2772']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:37:06 GMT']
+ date: ['Mon, 12 Nov 2018 17:59:22 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-subscription-writes: ['1189']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
@@ -624,18 +644,17 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [vm create]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python
- AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nw_vm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586650094593813749?api-version=2018-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nw_vm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586595613241436417?api-version=2018-05-01
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:37:37 GMT']
+ date: ['Mon, 12 Nov 2018 17:59:52 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -649,18 +668,17 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [vm create]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python
- AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nw_vm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586650094593813749?api-version=2018-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nw_vm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586595613241436417?api-version=2018-05-01
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:38:06 GMT']
+ date: ['Mon, 12 Nov 2018 18:00:23 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -674,18 +692,17 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [vm create]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python
- AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nw_vm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586650094593813749?api-version=2018-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nw_vm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586595613241436417?api-version=2018-05-01
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:38:37 GMT']
+ date: ['Mon, 12 Nov 2018 18:00:54 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -699,43 +716,17 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [vm create]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python
- AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nw_vm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586650094593813749?api-version=2018-05-01
- response:
- body: {string: '{"status":"Running"}'}
- headers:
- cache-control: [no-cache]
- content-length: ['20']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:39:08 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- x-content-type-options: [nosniff]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [vm create]
- Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python
- AZURECLI/2.0.46]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nw_vm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586650094593813749?api-version=2018-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nw_vm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586595613241436417?api-version=2018-05-01
response:
body: {string: '{"status":"Succeeded"}'}
headers:
cache-control: [no-cache]
content-length: ['22']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:39:38 GMT']
+ date: ['Mon, 12 Nov 2018 18:01:24 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -749,18 +740,17 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [vm create]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python
- AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nw_vm000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_8xvr5J0fV2gGxwyXN1TA6ByRSzUh3zOs","name":"vm_deploy_8xvr5J0fV2gGxwyXN1TA6ByRSzUh3zOs","properties":{"templateHash":"9574290551217684268","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2018-09-10T16:39:21.7025487Z","duration":"PT2M15.6062881S","correlationId":"00a038d0-edcf-4a38-918a-468dde861b0f","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_nw_vm000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkSecurityGroups/nsg1","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"nsg1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkSecurityGroups/nsg1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_nFWe2cudN0m2SjmGqcPycM1GzzElt5Ct","name":"vm_deploy_nFWe2cudN0m2SjmGqcPycM1GzzElt5Ct","properties":{"templateHash":"10059377131485329376","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2018-11-12T18:01:16.5181983Z","duration":"PT1M55.184199S","correlationId":"c43d1b2b-fade-4e88-a693-442de051aba4","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_nw_vm000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkSecurityGroups/nsg1","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"nsg1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkSecurityGroups/nsg1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}'}
headers:
cache-control: [no-cache]
content-length: ['3836']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:39:39 GMT']
+ date: ['Mon, 12 Nov 2018 18:01:24 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -774,21 +764,21 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [vm create]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 computemanagementclient/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2018-10-01
response:
- body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"1d7fb43d-9e01-4b75-a030-1498c22be010\",\r\n
+ body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"db017eb9-3480-44d3-8fc1-09914f2e8c1f\",\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_fc2dc4ee4e464ad1aee6bf10f9e3c9aa\",\r\n
+ {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_34bdc0a5331540eea8bb9ab39d9d87d5\",\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_nw_vm000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_fc2dc4ee4e464ad1aee6bf10f9e3c9aa\"\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_34bdc0a5331540eea8bb9ab39d9d87d5\"\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
@@ -797,19 +787,19 @@ interactions:
true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\":
\"vm1\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"16.04\",\r\n
- \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.31\",\r\n \"statuses\":
+ \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.33\",\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\":
- \"2018-09-10T16:39:39+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\":
- []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_OsDisk_1_fc2dc4ee4e464ad1aee6bf10f9e3c9aa\",\r\n
+ \"2018-11-12T18:01:24+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\":
+ []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_OsDisk_1_34bdc0a5331540eea8bb9ab39d9d87d5\",\r\n
\ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2018-09-10T16:37:57.4802203+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2018-11-12T17:59:59.9743417+00:00\"\r\n
\ }\r\n ]\r\n }\r\n ],\r\n \"statuses\":
[\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2018-09-10T16:39:09.8151255+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2018-11-12T18:01:10.6931149+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
@@ -819,7 +809,7 @@ interactions:
cache-control: [no-cache]
content-length: ['3064']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:39:40 GMT']
+ date: ['Mon, 12 Nov 2018 18:01:25 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -827,7 +817,7 @@ interactions:
transfer-encoding: [chunked]
vary: [Accept-Encoding]
x-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31978']
+ x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31994']
status: {code: 200, message: OK}
- request:
body: null
@@ -836,40 +826,40 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [vm create]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2018-01-01
response:
body: {string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n
- \ \"etag\": \"W/\\\"638e2ba3-a379-46ef-9fee-276a13d974f5\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"588f051b-73a4-4c95-a00c-8343014bd8c6\\\"\",\r\n \"location\":
\"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"55b5509f-3218-4eda-8a45-089500371e73\",\r\n
+ \"Succeeded\",\r\n \"resourceGuid\": \"6868e15a-cf69-47ac-bea0-18af9a5685cd\",\r\n
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\r\n
- \ \"etag\": \"W/\\\"638e2ba3-a379-46ef-9fee-276a13d974f5\\\"\",\r\n
+ \ \"etag\": \"W/\\\"588f051b-73a4-4c95-a00c-8343014bd8c6\\\"\",\r\n
\ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAddress\": \"10.0.0.9\",\r\n \"privateIPAllocationMethod\":
\"Static\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\r\n
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"\r\n
\ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\":
- \"IPv4\",\r\n \"isInUseWithService\": false\r\n }\r\n }\r\n
- \ ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\":
- [],\r\n \"internalDomainNameSuffix\": \"bcrb5mpn5cnepkh1nf3rdw3szc.yx.internal.cloudapp.net\"\r\n
- \ },\r\n \"macAddress\": \"00-0D-3A-F8-2F-D4\",\r\n \"enableAcceleratedNetworking\":
- false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\":
- {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkSecurityGroups/nsg1\"\r\n
+ \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\":
+ [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\":
+ \"zkvrbrq0j32ehcxad2j0m0yd1f.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\":
+ \"00-0D-3A-F8-F2-6F\",\r\n \"enableAcceleratedNetworking\": false,\r\n
+ \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkSecurityGroups/nsg1\"\r\n
\ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/virtualMachines/vm1\"\r\n
\ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['2612']
+ content-length: ['2572']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:39:40 GMT']
- etag: [W/"638e2ba3-a379-46ef-9fee-276a13d974f5"]
+ date: ['Mon, 12 Nov 2018 18:01:27 GMT']
+ etag: [W/"588f051b-73a4-4c95-a00c-8343014bd8c6"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -885,17 +875,17 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [vm create]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2018-01-01
response:
body: {string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\r\n
- \ \"etag\": \"W/\\\"d70e93f4-f857-47cd-9ddb-6b2b9c180270\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"06f1bcce-7a95-432d-b8c7-8df766029aa9\\\"\",\r\n \"location\":
\"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"4545651c-5746-4d3f-906c-06910a403705\",\r\n
- \ \"ipAddress\": \"13.78.131.238\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n
+ \"Succeeded\",\r\n \"resourceGuid\": \"616075ea-ca6d-4f7b-ade3-c54ee90c6f57\",\r\n
+ \ \"ipAddress\": \"13.78.151.8\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n
\ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\":
4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n
\ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n
@@ -903,10 +893,10 @@ interactions:
\ }\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['1029']
+ content-length: ['1027']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:39:40 GMT']
- etag: [W/"d70e93f4-f857-47cd-9ddb-6b2b9c180270"]
+ date: ['Mon, 12 Nov 2018 18:01:27 GMT']
+ etag: [W/"06f1bcce-7a95-432d-b8c7-8df766029aa9"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -922,21 +912,21 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [vm extension set]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 computemanagementclient/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2018-10-01
response:
- body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"1d7fb43d-9e01-4b75-a030-1498c22be010\",\r\n
+ body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"db017eb9-3480-44d3-8fc1-09914f2e8c1f\",\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_fc2dc4ee4e464ad1aee6bf10f9e3c9aa\",\r\n
+ {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_34bdc0a5331540eea8bb9ab39d9d87d5\",\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_nw_vm000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_fc2dc4ee4e464ad1aee6bf10f9e3c9aa\"\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_34bdc0a5331540eea8bb9ab39d9d87d5\"\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
@@ -945,19 +935,19 @@ interactions:
true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\":
\"vm1\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"16.04\",\r\n
- \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.31\",\r\n \"statuses\":
+ \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.33\",\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\":
- \"2018-09-10T16:39:39+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\":
- []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_OsDisk_1_fc2dc4ee4e464ad1aee6bf10f9e3c9aa\",\r\n
+ \"2018-11-12T18:01:27+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\":
+ []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_OsDisk_1_34bdc0a5331540eea8bb9ab39d9d87d5\",\r\n
\ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2018-09-10T16:37:57.4802203+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2018-11-12T17:59:59.9743417+00:00\"\r\n
\ }\r\n ]\r\n }\r\n ],\r\n \"statuses\":
[\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2018-09-10T16:39:09.8151255+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2018-11-12T18:01:10.6931149+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
@@ -967,7 +957,7 @@ interactions:
cache-control: [no-cache]
content-length: ['3064']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:39:52 GMT']
+ date: ['Mon, 12 Nov 2018 18:01:28 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -975,7 +965,7 @@ interactions:
transfer-encoding: [chunked]
vary: [Accept-Encoding]
x-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31977']
+ x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31992']
status: {code: 200, message: OK}
- request:
body: null
@@ -984,8 +974,8 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [vm extension set]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 computemanagementclient/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers?api-version=2018-10-01
@@ -1002,6 +992,8 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/7isolutions\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"a10networks\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/a10networks\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"a10_networks-5255398\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/a10_networks-5255398\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"abiquo\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/abiquo\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"accellion\",\r\n
@@ -1022,16 +1014,10 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/actifio\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"activeeon\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/activeeon\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"adobe_test\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/adobe_test\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"advantech\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/advantech\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"advantech-webaccess\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/advantech-webaccess\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aerospike\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aerospike\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aerospike-database\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aerospike-database\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"affinio\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/affinio\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n
@@ -1078,10 +1064,6 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/apps-4-rent\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"appscale-marketplace\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appscale-marketplace\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"appspace\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appspace\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aqua-security\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aqua-security\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aquaforest\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aquaforest\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"arabesque-group\",\r\n
@@ -1096,10 +1078,14 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/array_networks\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/artificial-intelligence-techniques-sl\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"arvato-systems\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/arvato-systems\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"asigra\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/asigra\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aspex-managed-cloud\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aspex-managed-cloud\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"astadia-1148316\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/astadia-1148316\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"atlassian\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/atlassian\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"atomicorp\",\r\n
@@ -1128,12 +1114,8 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/azurecyclecloud\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"AzureDatabricks\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AzureDatabricks\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"AzureRT.PIR.ProdTest\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AzureRT.PIR.ProdTest\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"AzureRT.Test\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AzureRT.Test\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"azuresyncfusion\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/azuresyncfusion\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"azuretesting\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/azuretesting\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"azuretesting2\",\r\n
@@ -1148,6 +1130,8 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/baffle-io\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"balabit\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/balabit\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Barracuda\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Barracuda\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"barracudanetworks\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/barracudanetworks\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"basho\",\r\n
@@ -1190,8 +1174,6 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bmcctm.test\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bocada\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bocada\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"brainshare-it\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/brainshare-it\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bravura-software-llc\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bravura-software-llc\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"brocade_communications\",\r\n
@@ -1212,8 +1194,6 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cautelalabs\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cavirin\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cavirin\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cbreplicator\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cbreplicator\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cds\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cds\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"celum-gmbh\",\r\n
@@ -1264,14 +1244,10 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudenablers-inc\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudera\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudera\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudera1qaz2wsx\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudera1qaz2wsx\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudhouse\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudhouse\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudhub-technologies\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudhub-technologies\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudify\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudify\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudlanes\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudlanes\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudlink\",\r\n
@@ -1310,6 +1286,10 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/confluentinc\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"connecting-software\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/connecting-software\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"consensys\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/consensys\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"containeraider\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/containeraider\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"convertigo\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/convertigo\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"corda\",\r\n
@@ -1318,12 +1298,8 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/core-stack\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"CoreOS\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/CoreOS\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cortex-ag\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cortex-ag\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"couchbase\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/couchbase\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"crate-io\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/crate-io\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"credativ\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/credativ\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cryptzone\",\r\n
@@ -1370,10 +1346,14 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/denyall\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"derdack\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/derdack\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"devfactory\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/devfactory\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dgsecure\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dgsecure\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"diagramics\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/diagramics\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"diehl-metering\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/diehl-metering\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"diladele\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/diladele\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n
@@ -1400,28 +1380,20 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dynatrace\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dynatrace.ruxit\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eastbanctech\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eastbanctech\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eastwind-networks-inc\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eastwind-networks-inc\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"edevtech\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/edevtech\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"egnyte\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/egnyte\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eip\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eip\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eip-eipower\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eip-eipower\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ekran-system-inc\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ekran-system-inc\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"elasticbox\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elasticbox\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"elecard\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elecard\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"electric-cloud\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/electric-cloud\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"elementrem\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elementrem\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"elevateiot\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elevateiot\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"elfiqnetworks\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elfiqnetworks\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"emercoin\",\r\n
@@ -1448,6 +1420,8 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eventtracker\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"evostream-inc\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/evostream-inc\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"exact\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/exact\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"exasol\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/exasol\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"exivity\",\r\n
@@ -1478,6 +1452,8 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fortinet\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fortycloud\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fortycloud\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fujitsu_fast\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fujitsu_fast\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fw\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fw\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gbs\",\r\n
@@ -1496,14 +1472,10 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gitlab\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"globalscape\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/globalscape\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gordic\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gordic\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"graphitegtc\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/graphitegtc\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/great-software-laboratory-private-limited\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"greathorn\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/greathorn\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"greensql\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/greensql\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gridgain\",\r\n
@@ -1542,8 +1514,6 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/huawei\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hubstor-inc\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hubstor-inc\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"humanlogic\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/humanlogic\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hush-hush\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hush-hush\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hvr\",\r\n
@@ -1556,8 +1526,6 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hytrust\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iaansys\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iaansys\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ibabs-eu\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ibabs-eu\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ibm\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ibm\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iboss\",\r\n
@@ -1596,6 +1564,8 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intellicus-technologies-pvt-ltd\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intelligent-plant-ltd\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"intersystems\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intersystems\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"intigua\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intigua\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ipswitch\",\r\n
@@ -1618,8 +1588,6 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jetnexus\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jetware-srl\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jetware-srl\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jfrog\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jfrog\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jitterbit_integration\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jitterbit_integration\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jm-technology-inc\",\r\n
@@ -1650,8 +1618,12 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kobalt\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/krypc-technologies-pvt-ltd\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"lancom-systems\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lancom-systems\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"lansa\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lansa\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"leap-orbit\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/leap-orbit\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"leostream-corporation\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/leostream-corporation\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"liebsoft\",\r\n
@@ -1674,8 +1646,6 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lti-lt-infotech\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"luminate-security\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/luminate-security\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mactores_inc\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mactores_inc\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"maketv\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/maketv\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"manageengine\",\r\n
@@ -1694,6 +1664,8 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mathworks-deployment\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mathworks-inc\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mathworks-inc\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"matillion\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/matillion\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mavinglobal\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mavinglobal\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n
@@ -1780,6 +1752,8 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.Dsms\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.Edp\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n
@@ -1824,8 +1798,6 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.GuestConfig.Test\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.GuestConfiguration\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.GuestConfiguration.Test\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n
@@ -1886,14 +1858,14 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftHybridCloudStorage\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftOSTC\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftOSTC\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoftoxa\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoftoxa\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftRServer\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftRServer\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftSharePoint\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftSQLServer\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftTestLinuxPPS\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftVisualStudio\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n
@@ -1902,6 +1874,8 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftWindowsServer\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoft_iot_edge\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoft_iot_edge\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microstrategy\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microstrategy\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"midfin\",\r\n
@@ -1918,14 +1892,14 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/miri-infotech-pvt-ltd\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mobilab\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mobilab\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"modern-systems\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/modern-systems\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"moogsoft\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/moogsoft\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"moviemasher\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/moviemasher\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"msopentech\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/msopentech\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"msrazuresapservices\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/msrazuresapservices\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mtnfog\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mtnfog\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"multisoft-ab\",\r\n
@@ -1946,6 +1920,10 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ndl\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nebbiolo-technologies-inc\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nec-technologies\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nec-technologies\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"neo4j\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/neo4j\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netapp\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netapp\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netatwork\",\r\n
@@ -1960,6 +1938,8 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netka\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netmail\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netmail\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netscout\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netscout\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netsweeper\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netsweeper\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netwrix\",\r\n
@@ -1968,12 +1948,12 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netx\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"neusoft-neteye\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/neusoft-neteye\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nextlimit\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nextlimit\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nginxinc\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nginxinc\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nicepeopleatwork\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nicepeopleatwork\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"niolabs-5229713\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/niolabs-5229713\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nodejsapi\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nodejsapi\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"noobaa\",\r\n
@@ -1996,6 +1976,8 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nvidia\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/o2mc-real-time-data-platform\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"objectivity-inc\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/objectivity-inc\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"oceanblue-cloud\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/oceanblue-cloud\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n
@@ -2006,10 +1988,16 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/omega-software\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"onapsis\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/onapsis\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/oncore_cloud_services-4944214\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ontology\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ontology\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"onyx-point-inc\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/onyx-point-inc\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"op5\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/op5\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"open-connect-systems\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/open-connect-systems\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"opencell\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/opencell\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"OpenLogic\",\r\n
@@ -2032,6 +2020,8 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/osisoft\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"osnexus\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/osnexus\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"outsystems\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/outsystems\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"paloaltonetworks\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/paloaltonetworks\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"panorama-necto\",\r\n
@@ -2056,8 +2046,6 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pivotal\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"plesk\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/plesk\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"portalarchitects\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/portalarchitects\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"postgres-pro\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/postgres-pro\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"prestashop\",\r\n
@@ -2092,6 +2080,8 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qlik\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"qore-technologies\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qore-technologies\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"qs-solutions\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qs-solutions\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Qualys\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Qualys\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Qualys.Test\",\r\n
@@ -2178,20 +2168,18 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scsk\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"secureworks\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/secureworks\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"semperis\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/semperis\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sentryone\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sentryone\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"service-control-inc\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/service-control-inc\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"shadow-soft\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/shadow-soft\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sharefile\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sharefile\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/shareshiftneeraj.test\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"shieldx-networks\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/shieldx-networks\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sidm\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sidm\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sightapps\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sightapps\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"signal-sciences\",\r\n
@@ -2200,14 +2188,14 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/silver-peak-systems\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"simmachinesinc\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/simmachinesinc\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"simpligov\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/simpligov\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"simplygon\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/simplygon\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sinefa\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sinefa\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sios_datakeeper\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sios_datakeeper\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sisense\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sisense\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Site24x7\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Site24x7\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"skyarc\",\r\n
@@ -2216,6 +2204,8 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/smartmessage-autoflow\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"snaplogic\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/snaplogic\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"snapt-adc\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/snapt-adc\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"soasta\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/soasta\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"softnas\",\r\n
@@ -2240,6 +2230,8 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/spagobi\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sparklinglogic\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sparklinglogic\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"spektra\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/spektra\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sphere3d\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sphere3d\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"splunk\",\r\n
@@ -2270,10 +2262,6 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stormshield\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"storreduce\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/storreduce\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stratalux\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stratalux\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stratis-group-ltd\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stratis-group-ltd\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stratumn\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stratumn\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"streamsets\",\r\n
@@ -2318,8 +2306,6 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/syncfusion\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/syncfusionbigdataplatfor\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"syncfusiondashboard\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/syncfusiondashboard\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"synechron-technologies\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/synechron-technologies\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"syte\",\r\n
@@ -2372,6 +2358,8 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/thales-vormetric\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"things-board\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/things-board\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"thomson-reuters\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/thomson-reuters\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"thoughtspot-inc\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/thoughtspot-inc\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tibco-software\",\r\n
@@ -2388,6 +2376,8 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tokyosystemhouse\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"topdesk\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/topdesk\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"topicus\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/topicus\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"torusware\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/torusware\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"totemo\",\r\n
@@ -2422,10 +2412,6 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ubercloud\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ulex\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ulex\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"unidesk\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unidesk\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"unidesk-corp\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unidesk-corp\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"unifi-software\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unifi-software\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"uniprint-net\",\r\n
@@ -2446,10 +2432,6 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/velocitydb-inc\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"velocloud\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/velocloud\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"velostrata\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/velostrata\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"velostrata-inc\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/velostrata-inc\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"veritas\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/veritas\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"versasec\",\r\n
@@ -2460,12 +2442,12 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vidizmo\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vintegris\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vintegris\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"viptela\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/viptela\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vircom\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vircom\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"visualsoft-center\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/visualsoft-center\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vizixiotplatformretail001\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vmturbo\",\r\n
@@ -2480,12 +2462,12 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/WAD2AI.Diagnostics.Test\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n
+ \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wallarm\",\r\n
+ \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wallarm\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wallix\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wallix\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wanpath-dba-myworkdrive\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"waratek\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/waratek\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wardy-it-solutions\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wardy-it-solutions\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"warewolf-esb\",\r\n
@@ -2502,8 +2484,6 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wmspanel\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"workshare-technology\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/workshare-technology\"\r\n
- \ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"workspot\",\r\n
- \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/workspot\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wowza\",\r\n
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wowza\"\r\n
\ },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"xendata-inc\",\r\n
@@ -2535,9 +2515,9 @@ interactions:
\ }\r\n]"}
headers:
cache-control: [no-cache]
- content-length: ['168248']
+ content-length: ['167283']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:39:52 GMT']
+ date: ['Mon, 12 Nov 2018 18:01:29 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2553,8 +2533,8 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [vm extension set]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 computemanagementclient/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.NetworkWatcher/artifacttypes/vmextension/types?api-version=2018-10-01
@@ -2568,7 +2548,7 @@ interactions:
cache-control: [no-cache]
content-length: ['611']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:39:53 GMT']
+ date: ['Mon, 12 Nov 2018 18:01:30 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2584,8 +2564,8 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [vm extension set]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 computemanagementclient/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.NetworkWatcher/artifacttypes/vmextension/types/NetworkWatcherAgentLinux/versions?api-version=2018-10-01
@@ -2615,7 +2595,7 @@ interactions:
cache-control: [no-cache]
content-length: ['3063']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:39:53 GMT']
+ date: ['Mon, 12 Nov 2018 18:01:30 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2635,8 +2615,8 @@ interactions:
Connection: [keep-alive]
Content-Length: ['190']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 computemanagementclient/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/virtualMachines/vm1/extensions/NetworkWatcherAgentLinux?api-version=2018-10-01
@@ -2648,18 +2628,18 @@ interactions:
\ \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/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/758ecaae-6a8e-4c88-95ef-b2ae4aa925cb?api-version=2018-10-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/030ff9eb-47c7-4704-8a35-c9bdbdca74d7?api-version=2018-10-01']
cache-control: [no-cache]
content-length: ['599']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:39:54 GMT']
+ date: ['Mon, 12 Nov 2018 18:01:31 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1198']
- x-ms-ratelimit-remaining-subscription-writes: ['1189']
+ x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
@@ -2668,19 +2648,19 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [vm extension set]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 computemanagementclient/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/758ecaae-6a8e-4c88-95ef-b2ae4aa925cb?api-version=2018-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/030ff9eb-47c7-4704-8a35-c9bdbdca74d7?api-version=2018-10-01
response:
- body: {string: "{\r\n \"startTime\": \"2018-09-10T16:39:54.5818496+00:00\",\r\n
- \ \"endTime\": \"2018-09-10T16:40:22.6809581+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"758ecaae-6a8e-4c88-95ef-b2ae4aa925cb\"\r\n}"}
+ body: {string: "{\r\n \"startTime\": \"2018-11-12T18:01:31.6149941+00:00\",\r\n
+ \ \"endTime\": \"2018-11-12T18:02:01.1321782+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"030ff9eb-47c7-4704-8a35-c9bdbdca74d7\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['184']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:40:24 GMT']
+ date: ['Mon, 12 Nov 2018 18:02:01 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2688,7 +2668,7 @@ interactions:
transfer-encoding: [chunked]
vary: [Accept-Encoding]
x-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29968']
+ x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29993']
status: {code: 200, message: OK}
- request:
body: null
@@ -2697,8 +2677,8 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [vm extension set]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 computemanagementclient/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/virtualMachines/vm1/extensions/NetworkWatcherAgentLinux?api-version=2018-10-01
response:
@@ -2712,7 +2692,7 @@ interactions:
cache-control: [no-cache]
content-length: ['600']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:40:24 GMT']
+ date: ['Mon, 12 Nov 2018 18:02:02 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2720,7 +2700,7 @@ interactions:
transfer-encoding: [chunked]
vary: [Accept-Encoding]
x-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31975']
+ x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31990']
status: {code: 200, message: OK}
- request:
body: null
@@ -2729,21 +2709,21 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [network watcher test-connectivity]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 computemanagementclient/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2018-10-01
response:
- body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"1d7fb43d-9e01-4b75-a030-1498c22be010\",\r\n
+ body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"db017eb9-3480-44d3-8fc1-09914f2e8c1f\",\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_fc2dc4ee4e464ad1aee6bf10f9e3c9aa\",\r\n
+ {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_34bdc0a5331540eea8bb9ab39d9d87d5\",\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_nw_vm000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_fc2dc4ee4e464ad1aee6bf10f9e3c9aa\"\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_34bdc0a5331540eea8bb9ab39d9d87d5\"\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
@@ -2764,7 +2744,7 @@ interactions:
cache-control: [no-cache]
content-length: ['2483']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:40:25 GMT']
+ date: ['Mon, 12 Nov 2018 18:02:03 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2772,7 +2752,7 @@ interactions:
transfer-encoding: [chunked]
vary: [Accept-Encoding]
x-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31973']
+ x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31988']
status: {code: 200, message: OK}
- request:
body: null
@@ -2781,15 +2761,15 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [network watcher test-connectivity]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2018-08-01
response:
body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"westcentralus-watcher\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRg/providers/Microsoft.Network/networkWatchers/westcentralus-watcher\",\r\n
- \ \"etag\": \"W/\\\"5f3dbfde-65ab-449d-8205-e421ec05b4a0\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"c0384146-ae17-4aaf-8472-24219c22f493\\\"\",\r\n \"type\":
\"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westcentralus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"flowLogs\": [],\r\n \"runningOperationIds\": []\r\n }\r\n
@@ -2798,7 +2778,7 @@ interactions:
cache-control: [no-cache]
content-length: ['527']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:40:26 GMT']
+ date: ['Mon, 12 Nov 2018 18:02:03 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2818,8 +2798,8 @@ interactions:
Connection: [keep-alive]
Content-Length: ['363']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRg/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/connectivityCheck?api-version=2018-08-01
@@ -2829,14 +2809,64 @@ interactions:
cache-control: [no-cache]
content-length: ['4']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:40:46 GMT']
+ date: ['Mon, 12 Nov 2018 18:02:23 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/ed20f46c-442f-4e61-a626-be031c3166d7?api-version=2018-08-01']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ status: {code: 202, message: Accepted}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [network watcher test-connectivity]
+ Connection: [keep-alive]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/ed20f46c-442f-4e61-a626-be031c3166d7?api-version=2018-08-01
+ response:
+ body: {string: 'null'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['4']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 12 Nov 2018 18:02:34 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/ed20f46c-442f-4e61-a626-be031c3166d7?api-version=2018-08-01']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-content-type-options: [nosniff]
+ status: {code: 202, message: Accepted}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [network watcher test-connectivity]
+ Connection: [keep-alive]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/ed20f46c-442f-4e61-a626-be031c3166d7?api-version=2018-08-01
+ response:
+ body: {string: 'null'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['4']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 12 Nov 2018 18:02:45 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/bf77fc12-521b-4e6e-8a64-9eff4ab1285e?api-version=2018-08-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/ed20f46c-442f-4e61-a626-be031c3166d7?api-version=2018-08-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-subscription-writes: ['1186']
status: {code: 202, message: Accepted}
- request:
body: null
@@ -2845,19 +2875,19 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [network watcher test-connectivity]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/bf77fc12-521b-4e6e-8a64-9eff4ab1285e?api-version=2018-08-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/ed20f46c-442f-4e61-a626-be031c3166d7?api-version=2018-08-01
response:
body: {string: 'null'}
headers:
cache-control: [no-cache]
content-length: ['4']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:40:57 GMT']
+ date: ['Mon, 12 Nov 2018 18:02:55 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/bf77fc12-521b-4e6e-8a64-9eff4ab1285e?api-version=2018-08-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/ed20f46c-442f-4e61-a626-be031c3166d7?api-version=2018-08-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -2870,19 +2900,19 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [network watcher test-connectivity]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/bf77fc12-521b-4e6e-8a64-9eff4ab1285e?api-version=2018-08-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/ed20f46c-442f-4e61-a626-be031c3166d7?api-version=2018-08-01
response:
body: {string: 'null'}
headers:
cache-control: [no-cache]
content-length: ['4']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:41:08 GMT']
+ date: ['Mon, 12 Nov 2018 18:03:06 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/bf77fc12-521b-4e6e-8a64-9eff4ab1285e?api-version=2018-08-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/ed20f46c-442f-4e61-a626-be031c3166d7?api-version=2018-08-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -2895,19 +2925,19 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [network watcher test-connectivity]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/bf77fc12-521b-4e6e-8a64-9eff4ab1285e?api-version=2018-08-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/ed20f46c-442f-4e61-a626-be031c3166d7?api-version=2018-08-01
response:
body: {string: 'null'}
headers:
cache-control: [no-cache]
content-length: ['4']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:41:17 GMT']
+ date: ['Mon, 12 Nov 2018 18:03:17 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/bf77fc12-521b-4e6e-8a64-9eff4ab1285e?api-version=2018-08-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/ed20f46c-442f-4e61-a626-be031c3166d7?api-version=2018-08-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -2920,19 +2950,19 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [network watcher test-connectivity]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/bf77fc12-521b-4e6e-8a64-9eff4ab1285e?api-version=2018-08-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/ed20f46c-442f-4e61-a626-be031c3166d7?api-version=2018-08-01
response:
body: {string: 'null'}
headers:
cache-control: [no-cache]
content-length: ['4']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:41:28 GMT']
+ date: ['Mon, 12 Nov 2018 18:03:27 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/bf77fc12-521b-4e6e-8a64-9eff4ab1285e?api-version=2018-08-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/ed20f46c-442f-4e61-a626-be031c3166d7?api-version=2018-08-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -2945,19 +2975,19 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [network watcher test-connectivity]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/bf77fc12-521b-4e6e-8a64-9eff4ab1285e?api-version=2018-08-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/ed20f46c-442f-4e61-a626-be031c3166d7?api-version=2018-08-01
response:
body: {string: 'null'}
headers:
cache-control: [no-cache]
content-length: ['4']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:41:38 GMT']
+ date: ['Mon, 12 Nov 2018 18:03:38 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/bf77fc12-521b-4e6e-8a64-9eff4ab1285e?api-version=2018-08-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/ed20f46c-442f-4e61-a626-be031c3166d7?api-version=2018-08-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -2970,19 +3000,19 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [network watcher test-connectivity]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/bf77fc12-521b-4e6e-8a64-9eff4ab1285e?api-version=2018-08-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/ed20f46c-442f-4e61-a626-be031c3166d7?api-version=2018-08-01
response:
body: {string: 'null'}
headers:
cache-control: [no-cache]
content-length: ['4']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:41:49 GMT']
+ date: ['Mon, 12 Nov 2018 18:03:49 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/bf77fc12-521b-4e6e-8a64-9eff4ab1285e?api-version=2018-08-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/ed20f46c-442f-4e61-a626-be031c3166d7?api-version=2018-08-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -2995,19 +3025,19 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [network watcher test-connectivity]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/bf77fc12-521b-4e6e-8a64-9eff4ab1285e?api-version=2018-08-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/ed20f46c-442f-4e61-a626-be031c3166d7?api-version=2018-08-01
response:
body: {string: 'null'}
headers:
cache-control: [no-cache]
content-length: ['4']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:41:59 GMT']
+ date: ['Mon, 12 Nov 2018 18:03:59 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/bf77fc12-521b-4e6e-8a64-9eff4ab1285e?api-version=2018-08-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/ed20f46c-442f-4e61-a626-be031c3166d7?api-version=2018-08-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -3020,19 +3050,19 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [network watcher test-connectivity]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/bf77fc12-521b-4e6e-8a64-9eff4ab1285e?api-version=2018-08-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/ed20f46c-442f-4e61-a626-be031c3166d7?api-version=2018-08-01
response:
body: {string: 'null'}
headers:
cache-control: [no-cache]
content-length: ['4']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:42:09 GMT']
+ date: ['Mon, 12 Nov 2018 18:04:09 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/bf77fc12-521b-4e6e-8a64-9eff4ab1285e?api-version=2018-08-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/ed20f46c-442f-4e61-a626-be031c3166d7?api-version=2018-08-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -3045,38 +3075,88 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [network watcher test-connectivity]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/bf77fc12-521b-4e6e-8a64-9eff4ab1285e?api-version=2018-08-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/ed20f46c-442f-4e61-a626-be031c3166d7?api-version=2018-08-01
response:
- body: {string: "{\r\n \"hops\": [\r\n {\r\n \"type\": \"Source\",\r\n
- \ \"id\": \"649cf90e-f954-44fe-923a-556fc1a62217\",\r\n \"address\":
+ body: {string: 'null'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['4']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 12 Nov 2018 18:04:19 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/ed20f46c-442f-4e61-a626-be031c3166d7?api-version=2018-08-01']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-content-type-options: [nosniff]
+ status: {code: 202, message: Accepted}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [network watcher test-connectivity]
+ Connection: [keep-alive]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/ed20f46c-442f-4e61-a626-be031c3166d7?api-version=2018-08-01
+ response:
+ body: {string: 'null'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['4']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 12 Nov 2018 18:04:30 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/ed20f46c-442f-4e61-a626-be031c3166d7?api-version=2018-08-01']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-content-type-options: [nosniff]
+ status: {code: 202, message: Accepted}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [network watcher test-connectivity]
+ Connection: [keep-alive]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/ed20f46c-442f-4e61-a626-be031c3166d7?api-version=2018-08-01
+ response:
+ body: {string: "{\r\n \"hops\": [\r\n {\r\n \"type\": \"VirtualMachine\",\r\n
+ \ \"id\": \"82e3b3a7-2c2f-4c24-90f5-f233e1e01e6f\",\r\n \"address\":
\"10.0.0.9\",\r\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n
- \ \"nextHopIds\": [\r\n \"d1b52a37-f504-4d86-9ef9-c4505f424c3a\"\r\n
- \ ],\r\n \"links\": [\r\n {\r\n \"nextHopId\": \"d1b52a37-f504-4d86-9ef9-c4505f424c3a\",\r\n
- \ \"type\": \"5\",\r\n \"properties\": {\r\n \"roundTripTimeMin\":
- 3,\r\n \"roundTripTimeAvg\": 3,\r\n \"roundTripTimeMax\":
- 5\r\n },\r\n \"context\": {},\r\n \"issues\": [],\r\n
- \ \"resourceId\": \"\"\r\n }\r\n ],\r\n \"previousHopIds\":
+ \ \"nextHopIds\": [\r\n \"5594efb7-ddb1-49b4-97b0-490bf5a572bc\"\r\n
+ \ ],\r\n \"links\": [\r\n {\r\n \"nextHopId\": \"5594efb7-ddb1-49b4-97b0-490bf5a572bc\",\r\n
+ \ \"linkType\": \"Internet\",\r\n \"type\": \"Internet\",\r\n
+ \ \"properties\": {},\r\n \"context\": {},\r\n \"issues\":
+ [],\r\n \"resourceId\": \"\"\r\n }\r\n ],\r\n \"previousHopIds\":
[],\r\n \"previousLinks\": [],\r\n \"issues\": []\r\n },\r\n
- \ {\r\n \"type\": \"Internet\",\r\n \"id\": \"d1b52a37-f504-4d86-9ef9-c4505f424c3a\",\r\n
- \ \"address\": \"23.43.242.137\",\r\n \"resourceId\": \"\",\r\n \"nextHopIds\":
- [],\r\n \"links\": [],\r\n \"previousHopIds\": [\r\n \"649cf90e-f954-44fe-923a-556fc1a62217\"\r\n
+ \ {\r\n \"type\": \"Internet\",\r\n \"id\": \"5594efb7-ddb1-49b4-97b0-490bf5a572bc\",\r\n
+ \ \"address\": \"23.76.192.232\",\r\n \"resourceId\": \"\",\r\n \"nextHopIds\":
+ [],\r\n \"links\": [],\r\n \"previousHopIds\": [\r\n \"82e3b3a7-2c2f-4c24-90f5-f233e1e01e6f\"\r\n
\ ],\r\n \"previousLinks\": [\r\n {\r\n \"nextHopId\":
- \"649cf90e-f954-44fe-923a-556fc1a62217\",\r\n \"type\": \"5\",\r\n
- \ \"properties\": {},\r\n \"context\": {},\r\n \"issues\":
- [],\r\n \"resourceId\": \"\"\r\n }\r\n ],\r\n \"issues\":
- []\r\n }\r\n ],\r\n \"connectionStatus\": \"Reachable\",\r\n \"avgLatencyInMs\":
- 3,\r\n \"minLatencyInMs\": 3,\r\n \"maxLatencyInMs\": 3,\r\n \"probesSent\":
- 66,\r\n \"probesFailed\": 0\r\n}"}
+ \"82e3b3a7-2c2f-4c24-90f5-f233e1e01e6f\",\r\n \"linkType\": \"Internet\",\r\n
+ \ \"type\": \"Internet\",\r\n \"properties\": {},\r\n \"context\":
+ {},\r\n \"issues\": [],\r\n \"resourceId\": \"\"\r\n }\r\n
+ \ ],\r\n \"issues\": []\r\n }\r\n ],\r\n \"connectionStatus\":
+ \"Reachable\",\r\n \"avgLatencyInMs\": 18,\r\n \"minLatencyInMs\": 18,\r\n
+ \ \"maxLatencyInMs\": 19,\r\n \"probesSent\": 66,\r\n \"probesFailed\":
+ 0\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['1592']
+ content-length: ['1568']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:42:20 GMT']
+ date: ['Mon, 12 Nov 2018 18:04:41 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/bf77fc12-521b-4e6e-8a64-9eff4ab1285e?api-version=2018-08-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/ed20f46c-442f-4e61-a626-be031c3166d7?api-version=2018-08-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -3092,25 +3172,24 @@ interactions:
CommandName: [network watcher run-configuration-diagnostic]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python
- AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute?api-version=2018-05-01
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute","namespace":"Microsoft.Compute","authorizations":[{"applicationId":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","roleDefinitionId":"e4770acb-272e-4dc8-87f3-12f44a612224"},{"applicationId":"a303894e-f1d8-4a37-bf10-67aa654a0596","roleDefinitionId":"903ac751-8ad5-4e5a-bfc2-5e49f450a241"},{"applicationId":"a8b6bf88-1d1a-4626-b040-9a729ea93c65","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"184909ca-69f1-4368-a6a7-c558ee6eb0bd","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"5e5e43d4-54da-4211-86a4-c6e7f3715801","roleDefinitionId":"ffcd6e5b-8772-457d-bb17-89703c03428f"}],"resourceTypes":[{"resourceType":"availabilitySets","locations":["East
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute","namespace":"Microsoft.Compute","authorizations":[{"applicationId":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","roleDefinitionId":"e4770acb-272e-4dc8-87f3-12f44a612224"},{"applicationId":"a303894e-f1d8-4a37-bf10-67aa654a0596","roleDefinitionId":"903ac751-8ad5-4e5a-bfc2-5e49f450a241"},{"applicationId":"a8b6bf88-1d1a-4626-b040-9a729ea93c65","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"184909ca-69f1-4368-a6a7-c558ee6eb0bd","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"5e5e43d4-54da-4211-86a4-c6e7f3715801","roleDefinitionId":"ffcd6e5b-8772-457d-bb17-89703c03428f"},{"applicationId":"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"},{"applicationId":"372140e0-b3b7-4226-8ef9-d57986796201","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"}],"resourceTypes":[{"resourceType":"availabilitySets","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Brazil South","South India","Central India","West
India","Canada Central","Canada East","West US 2","West Central US","UK South","UK
- West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2016-03-30","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"}],"capabilities":"CrossResourceGroupResourceMove,
+ West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2016-03-30","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"virtualMachines","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Brazil South","South India","Central India","West
India","Canada Central","Canada East","West US 2","West Central US","UK South","UK
- West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2016-03-30","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"}],"zoneMappings":[{"location":"East
+ West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2016-03-30","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}],"zoneMappings":[{"location":"East
US 2","zones":["1","2","3"]},{"location":"Central US","zones":["1","2","3"]},{"location":"West
Europe","zones":["1","2","3"]},{"location":"France Central","zones":["1","2","3"]},{"location":"Southeast
Asia","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"North
@@ -3120,13 +3199,13 @@ interactions:
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Brazil South","South India","Central India","West
India","Canada Central","Canada East","West US 2","West Central US","UK South","UK
- West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2016-03-30","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"}],"capabilities":"CrossResourceGroupResourceMove,
+ West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2016-03-30","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"virtualMachineScaleSets","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Brazil South","South India","Central India","West
India","Canada Central","Canada East","West US 2","West Central US","UK South","UK
- West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2015-06-15","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"}],"zoneMappings":[{"location":"East
+ West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2015-06-15","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}],"zoneMappings":[{"location":"East
US 2","zones":["1","2","3"]},{"location":"Central US","zones":["1","2","3"]},{"location":"West
Europe","zones":["1","2","3"]},{"location":"France Central","zones":["1","2","3"]},{"location":"Southeast
Asia","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"North
@@ -3136,72 +3215,72 @@ interactions:
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Brazil South","South India","Central India","West
India","Canada Central","Canada East","West US 2","West Central US","UK South","UK
- West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2015-06-15"},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East
+ West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2015-06-15","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Brazil South","South India","Central India","West
India","Canada Central","Canada East","West US 2","West Central US","UK South","UK
- West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East
+ West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Brazil South","South India","Central India","West
India","Canada Central","Canada East","West US 2","West Central US","UK South","UK
- West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East
+ West","Korea Central","Korea South","France Central"],"apiVersions":["2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Brazil South","South India","Central India","West
India","Canada Central","Canada East","West US 2","West Central US","UK South","UK
- West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East
+ West","Korea Central","Korea South","France Central"],"apiVersions":["2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Brazil South","South India","Central India","West
India","Canada Central","Canada East","West US 2","West Central US","UK South","UK
- West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-04-01","2017-12-01","2017-03-30"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-10-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/operations","locations":["East
+ West","Korea Central","Korea South","France Central"],"apiVersions":["2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"locations","locations":[],"apiVersions":["2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/operations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Brazil South","South India","Central India","West
India","Canada Central","Canada East","West US 2","West Central US","UK South","UK
- West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/vmSizes","locations":["East
+ West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"locations/vmSizes","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Brazil South","South India","Central India","West
India","Canada Central","Canada East","West US 2","West Central US","UK South","UK
- West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/runCommands","locations":["East
+ West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"locations/runCommands","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Brazil South","South India","Central India","West
India","Canada Central","Canada East","West US 2","West Central US","UK South","UK
- West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-04-01","2017-12-01","2017-03-30"]},{"resourceType":"locations/usages","locations":["East
+ West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"locations/usages","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Brazil South","South India","Central India","West
India","Canada Central","Canada East","West US 2","West Central US","UK South","UK
- West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/virtualMachines","locations":["East
+ West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"locations/virtualMachines","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Brazil South","South India","Central India","West
India","Canada Central","Canada East","West US 2","West Central US","UK South","UK
- West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2016-08-30"},{"resourceType":"locations/publishers","locations":["East
+ West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2016-08-30","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"locations/publishers","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Brazil South","South India","Central India","West
India","Canada Central","Canada East","West US 2","West Central US","UK South","UK
- West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"operations","locations":["East
+ West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"operations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Brazil South","South India","Central India","West
India","Canada Central","Canada East","West US 2","West Central US","UK South","UK
- West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"restorePointCollections","locations":["Southeast
+ West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"restorePointCollections","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
East","Central India","South India","Australia East","Australia Southeast","Korea
- Central","Korea South","West India","France Central"],"apiVersions":["2018-10-01","2018-04-01","2017-12-01","2017-03-30"],"capabilities":"None"},{"resourceType":"restorePointCollections/restorePoints","locations":["Southeast
+ Central","Korea South","West India","France Central"],"apiVersions":["2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"capabilities":"None"},{"resourceType":"restorePointCollections/restorePoints","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
East","Central India","South India","Australia East","Australia Southeast","Korea
- Central","Korea South","West India","France Central"],"apiVersions":["2018-10-01","2018-04-01","2017-12-01","2017-03-30"]},{"resourceType":"virtualMachines/diagnosticSettings","locations":["East
+ Central","Korea South","West India","France Central"],"apiVersions":["2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"]},{"resourceType":"virtualMachines/diagnosticSettings","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Brazil South","South India","Central India","West
@@ -3212,14 +3291,19 @@ interactions:
East","Australia Southeast","Brazil South","South India","Central India","West
India","Canada Central","Canada East","West US 2","West Central US","UK South","UK
West","Korea Central","Korea South","France Central"],"apiVersions":["2014-04-01"]},{"resourceType":"sharedVMImages","locations":["West
- Central US","South Central US","East US 2","Southeast Asia","West Europe"],"apiVersions":["2017-10-15-preview"],"capabilities":"None"},{"resourceType":"sharedVMImages/versions","locations":["West
- Central US","South Central US","East US 2","Southeast Asia","West Europe"],"apiVersions":["2017-10-15-preview"],"capabilities":"None"},{"resourceType":"locations/capsoperations","locations":["West
- Central US","South Central US","East US 2","Southeast Asia","West Europe"],"apiVersions":["2018-10-01","2017-10-15-preview"]},{"resourceType":"disks","locations":["Southeast
+ Central US","South Central US","East US 2","Southeast Asia","West Europe","West
+ US","East US","Canada Central"],"apiVersions":["2017-10-15-preview"],"capabilities":"None"},{"resourceType":"sharedVMImages/versions","locations":["West
+ Central US","South Central US","East US 2","Southeast Asia","West Europe","West
+ US","East US","Canada Central"],"apiVersions":["2017-10-15-preview"],"capabilities":"None"},{"resourceType":"locations/artifactPublishers","locations":["West
+ Central US","South Central US","East US 2","Southeast Asia","West Europe","West
+ US","East US","Canada Central"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"locations/capsoperations","locations":["West
+ Central US","South Central US","East US 2","Southeast Asia","West Europe","West
+ US","East US","Canada Central"],"apiVersions":["2018-06-01","2017-10-15-preview"]},{"resourceType":"disks","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
East","Central India","South India","Australia East","Australia Southeast","Korea
- Central","Korea South","West India","France Central"],"apiVersions":["2018-10-01","2018-04-01","2017-03-30","2016-04-30-preview"],"zoneMappings":[{"location":"East
+ Central","Korea South","West India","France Central"],"apiVersions":["2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"zoneMappings":[{"location":"East
US 2","zones":["1","2","3"]},{"location":"Central US","zones":["1","2","3"]},{"location":"West
Europe","zones":["1","2","3"]},{"location":"France Central","zones":["1","2","3"]},{"location":"Southeast
Asia","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"North
@@ -3229,29 +3313,35 @@ interactions:
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
East","Central India","South India","Australia East","Australia Southeast","Korea
- Central","Korea South","West India","France Central"],"apiVersions":["2018-10-01","2018-04-01","2017-03-30","2016-04-30-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central","Korea South","West India","France Central"],"apiVersions":["2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"locations/diskoperations","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
East","Central India","South India","Australia East","Australia Southeast","Korea
- Central","Korea South","West India","France Central"],"apiVersions":["2018-10-01","2018-04-01","2017-03-30","2016-04-30-preview"]},{"resourceType":"images","locations":["Southeast
+ Central","Korea South","West India","France Central"],"apiVersions":["2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}]},{"resourceType":"images","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
East","Central India","South India","Australia East","Australia Southeast","Korea
- Central","Korea South","West India","France Central"],"apiVersions":["2018-10-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central","Korea South","West India","France Central"],"apiVersions":["2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"locations/logAnalytics","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Brazil South","South India","Central India","West
India","Canada Central","Canada East","West US 2","West Central US","UK South","UK
- West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-04-01","2017-12-01"]}],"registrationState":"Registered"}'}
+ West","Korea Central","Korea South","France Central"],"apiVersions":["2018-10-01","2018-06-01","2018-04-01","2017-12-01"]},{"resourceType":"galleries","locations":["West
+ Central US","South Central US","East US 2","Southeast Asia","West Europe","West
+ US","East US","Canada Central"],"apiVersions":["2018-06-01"],"capabilities":"None"},{"resourceType":"galleries/images","locations":["West
+ Central US","South Central US","East US 2","Southeast Asia","West Europe","West
+ US","East US","Canada Central"],"apiVersions":["2018-06-01"],"capabilities":"None"},{"resourceType":"galleries/images/versions","locations":["West
+ Central US","South Central US","East US 2","Southeast Asia","West Europe","West
+ US","East US","Canada Central"],"apiVersions":["2018-06-01"],"capabilities":"None"}],"registrationState":"Registered"}'}
headers:
cache-control: [no-cache]
- content-length: ['17943']
+ content-length: ['22647']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:42:21 GMT']
+ date: ['Mon, 12 Nov 2018 18:04:42 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -3266,22 +3356,21 @@ interactions:
CommandName: [network watcher run-configuration-diagnostic]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python
- AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2018-10-01
response:
- body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"1d7fb43d-9e01-4b75-a030-1498c22be010\",\r\n
+ body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"db017eb9-3480-44d3-8fc1-09914f2e8c1f\",\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_fc2dc4ee4e464ad1aee6bf10f9e3c9aa\",\r\n
+ {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_34bdc0a5331540eea8bb9ab39d9d87d5\",\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_nw_vm000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_fc2dc4ee4e464ad1aee6bf10f9e3c9aa\"\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_34bdc0a5331540eea8bb9ab39d9d87d5\"\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
@@ -3302,7 +3391,7 @@ interactions:
cache-control: [no-cache]
content-length: ['2483']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:42:21 GMT']
+ date: ['Mon, 12 Nov 2018 18:04:42 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3310,7 +3399,7 @@ interactions:
transfer-encoding: [chunked]
vary: [Accept-Encoding]
x-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31970']
+ x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31985']
status: {code: 200, message: OK}
- request:
body: null
@@ -3319,72 +3408,56 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [network watcher run-configuration-diagnostic]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2018-08-01
response:
- body: {string: '{"value":[{"name":"ps4997","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7958/providers/Microsoft.Network/networkWatchers/ps4997","etag":"W/\"a6b2e361-5b35-4477-8366-6c4e0af7ca37\"","type":"Microsoft.Network/networkWatchers","location":"eastus","properties":{"provisioningState":"Succeeded","flowLogs":[],"runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRg/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"29244059-9b1d-47e0-aad4-5648ebc69d50\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","flowLogs":[],"runningOperationIds":[]}}]}'}
+ body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"westcentralus-watcher\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRg/providers/Microsoft.Network/networkWatchers/westcentralus-watcher\",\r\n
+ \ \"etag\": \"W/\\\"246121cd-bf46-450e-a80d-b6d0f06c9361\\\"\",\r\n \"type\":
+ \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westcentralus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"flowLogs\": [],\r\n \"runningOperationIds\": []\r\n }\r\n
+ \ }\r\n ]\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['760']
+ content-length: ['527']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:42:21 GMT']
+ date: ['Mon, 12 Nov 2018 18:04:43 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
vary: [Accept-Encoding]
x-content-type-options: [nosniff]
- x-ms-original-request-ids: [08a63422-3193-403a-9b2d-7c6b018aca3b, f0f0f078-a88e-4beb-8ed2-d6f52e1f6f03]
status: {code: 200, message: OK}
- request:
body: 'b''{"targetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/virtualMachines/vm1",
- "queries": [{"direction": "Inbound", "protocol": "Tcp", "source": "12.11.12.14",
+ "profiles": [{"direction": "Inbound", "protocol": "Tcp", "source": "12.11.12.14",
"destination": "10.1.1.4", "destinationPort": "12100"}]}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
CommandName: [network watcher run-configuration-diagnostic]
Connection: [keep-alive]
- Content-Length: ['352']
+ Content-Length: ['353']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRg/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/networkConfigurationDiagnostic?api-version=2018-08-01
response:
- body: {string: "{\r\n \"results\": [\r\n {\r\n \"trafficQuery\": {\r\n
- \ \"direction\": \"Inbound\",\r\n \"protocol\": \"Tcp\",\r\n
- \ \"source\": \"12.11.12.14\",\r\n \"destination\": \"10.1.1.4\",\r\n
- \ \"destinationPort\": \"12100\"\r\n },\r\n \"networkSecurityGroupResult\":
- {\r\n \"securityRuleAccessResult\": \"Deny\",\r\n \"evaluatedNetworkSecurityGroups\":
- [\r\n {\r\n \"networkSecurityGroupId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg5\",\r\n
- \ \"matchedRule\": {\r\n \"ruleName\": \"UserRule_Cleanuptool-Allow-4001\",\r\n
- \ \"action\": \"Allow\"\r\n },\r\n \"rulesEvaluationResult\":
- [\r\n {\r\n \"name\": \"UserRule_Cleanuptool-Allow-100\",\r\n
- \ \"protocolMatched\": true,\r\n \"sourceMatched\":
- false,\r\n \"sourcePortMatched\": true,\r\n \"destinationMatched\":
- true,\r\n \"destinationPortMatched\": false\r\n },\r\n
- \ {\r\n \"name\": \"UserRule_Cleanuptool-Allow-101\",\r\n
- \ \"protocolMatched\": true,\r\n \"sourceMatched\":
- false,\r\n \"sourcePortMatched\": true,\r\n \"destinationMatched\":
- true,\r\n \"destinationPortMatched\": false\r\n },\r\n
- \ {\r\n \"name\": \"UserRule_Cleanuptool-Allow-102\",\r\n
- \ \"protocolMatched\": true,\r\n \"sourceMatched\":
- false,\r\n \"sourcePortMatched\": true,\r\n \"destinationMatched\":
- true,\r\n \"destinationPortMatched\": false\r\n },\r\n
- \ {\r\n \"name\": \"UserRule_Cleanuptool-Deny-103\",\r\n
- \ \"protocolMatched\": true,\r\n \"sourceMatched\":
- true,\r\n \"sourcePortMatched\": true,\r\n \"destinationMatched\":
- true,\r\n \"destinationPortMatched\": false\r\n },\r\n
- \ {\r\n \"name\": \"UserRule_Cleanuptool-Allow-4001\",\r\n
- \ \"protocolMatched\": true,\r\n \"sourceMatched\":
- true,\r\n \"sourcePortMatched\": true,\r\n \"destinationMatched\":
- true,\r\n \"destinationPortMatched\": true\r\n }\r\n
- \ ]\r\n },\r\n {\r\n \"networkSecurityGroupId\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkSecurityGroups/nsg1\",\r\n
+ body: {string: "{\r\n \"results\": [\r\n {\r\n \"profile\": {\r\n \"direction\":
+ \"Inbound\",\r\n \"protocol\": \"Tcp\",\r\n \"source\": \"12.11.12.14\",\r\n
+ \ \"destination\": \"10.1.1.4\",\r\n \"destinationPort\": \"12100\"\r\n
+ \ },\r\n \"networkSecurityGroupResult\": {\r\n \"securityRuleAccessResult\":
+ \"Deny\",\r\n \"evaluatedNetworkSecurityGroups\": [\r\n {\r\n
+ \ \"networkSecurityGroupId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkSecurityGroups/nsg1\",\r\n
+ \ \"appliedTo\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n
\ \"matchedRule\": {\r\n \"ruleName\": \"DefaultRule_DenyAllInBound\",\r\n
\ \"action\": \"Deny\"\r\n },\r\n \"rulesEvaluationResult\":
[\r\n {\r\n \"name\": \"UserRule_default-allow-ssh\",\r\n
@@ -3406,18 +3479,18 @@ interactions:
\ ]\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['4093']
+ content-length: ['2324']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:42:32 GMT']
+ date: ['Mon, 12 Nov 2018 18:04:52 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/d0f53496-595c-45c2-82c6-b0df1938f584?api-version=2018-08-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/9df25f35-855e-495a-963c-c172a5eda221?api-version=2018-08-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-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 200, message: OK}
- request:
body: null
@@ -3426,41 +3499,18 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [network watcher run-configuration-diagnostic]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/d0f53496-595c-45c2-82c6-b0df1938f584?api-version=2018-08-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/9df25f35-855e-495a-963c-c172a5eda221?api-version=2018-08-01
response:
- body: {string: "{\r\n \"results\": [\r\n {\r\n \"trafficQuery\": {\r\n
- \ \"direction\": \"Inbound\",\r\n \"protocol\": \"Tcp\",\r\n
- \ \"source\": \"12.11.12.14\",\r\n \"destination\": \"10.1.1.4\",\r\n
- \ \"destinationPort\": \"12100\"\r\n },\r\n \"networkSecurityGroupResult\":
- {\r\n \"securityRuleAccessResult\": \"Deny\",\r\n \"evaluatedNetworkSecurityGroups\":
- [\r\n {\r\n \"networkSecurityGroupId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg5\",\r\n
- \ \"matchedRule\": {\r\n \"ruleName\": \"UserRule_Cleanuptool-Allow-4001\",\r\n
- \ \"action\": \"Allow\"\r\n },\r\n \"rulesEvaluationResult\":
- [\r\n {\r\n \"name\": \"UserRule_Cleanuptool-Allow-100\",\r\n
- \ \"protocolMatched\": true,\r\n \"sourceMatched\":
- false,\r\n \"sourcePortMatched\": true,\r\n \"destinationMatched\":
- true,\r\n \"destinationPortMatched\": false\r\n },\r\n
- \ {\r\n \"name\": \"UserRule_Cleanuptool-Allow-101\",\r\n
- \ \"protocolMatched\": true,\r\n \"sourceMatched\":
- false,\r\n \"sourcePortMatched\": true,\r\n \"destinationMatched\":
- true,\r\n \"destinationPortMatched\": false\r\n },\r\n
- \ {\r\n \"name\": \"UserRule_Cleanuptool-Allow-102\",\r\n
- \ \"protocolMatched\": true,\r\n \"sourceMatched\":
- false,\r\n \"sourcePortMatched\": true,\r\n \"destinationMatched\":
- true,\r\n \"destinationPortMatched\": false\r\n },\r\n
- \ {\r\n \"name\": \"UserRule_Cleanuptool-Deny-103\",\r\n
- \ \"protocolMatched\": true,\r\n \"sourceMatched\":
- true,\r\n \"sourcePortMatched\": true,\r\n \"destinationMatched\":
- true,\r\n \"destinationPortMatched\": false\r\n },\r\n
- \ {\r\n \"name\": \"UserRule_Cleanuptool-Allow-4001\",\r\n
- \ \"protocolMatched\": true,\r\n \"sourceMatched\":
- true,\r\n \"sourcePortMatched\": true,\r\n \"destinationMatched\":
- true,\r\n \"destinationPortMatched\": true\r\n }\r\n
- \ ]\r\n },\r\n {\r\n \"networkSecurityGroupId\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkSecurityGroups/nsg1\",\r\n
+ body: {string: "{\r\n \"results\": [\r\n {\r\n \"profile\": {\r\n \"direction\":
+ \"Inbound\",\r\n \"protocol\": \"Tcp\",\r\n \"source\": \"12.11.12.14\",\r\n
+ \ \"destination\": \"10.1.1.4\",\r\n \"destinationPort\": \"12100\"\r\n
+ \ },\r\n \"networkSecurityGroupResult\": {\r\n \"securityRuleAccessResult\":
+ \"Deny\",\r\n \"evaluatedNetworkSecurityGroups\": [\r\n {\r\n
+ \ \"networkSecurityGroupId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkSecurityGroups/nsg1\",\r\n
+ \ \"appliedTo\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n
\ \"matchedRule\": {\r\n \"ruleName\": \"DefaultRule_DenyAllInBound\",\r\n
\ \"action\": \"Deny\"\r\n },\r\n \"rulesEvaluationResult\":
[\r\n {\r\n \"name\": \"UserRule_default-allow-ssh\",\r\n
@@ -3482,11 +3532,11 @@ interactions:
\ ]\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['4093']
+ content-length: ['2324']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:43:03 GMT']
+ date: ['Mon, 12 Nov 2018 18:05:23 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/d0f53496-595c-45c2-82c6-b0df1938f584?api-version=2018-08-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/9df25f35-855e-495a-963c-c172a5eda221?api-version=2018-08-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -3502,19 +3552,18 @@ interactions:
CommandName: [network watcher show-topology]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python
- AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nw_vm000001?api-version=2018-05-01
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001","name":"cli_test_nw_vm000001","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-09-10T16:36:55Z"},"properties":{"provisioningState":"Succeeded"}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001","name":"cli_test_nw_vm000001","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-11-12T17:59:08Z"},"properties":{"provisioningState":"Succeeded"}}'}
headers:
cache-control: [no-cache]
content-length: ['391']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:43:04 GMT']
+ date: ['Mon, 12 Nov 2018 18:05:24 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -3528,24 +3577,31 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [network watcher show-topology]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2018-08-01
response:
- body: {string: '{"value":[{"name":"ps4997","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7958/providers/Microsoft.Network/networkWatchers/ps4997","etag":"W/\"a6b2e361-5b35-4477-8366-6c4e0af7ca37\"","type":"Microsoft.Network/networkWatchers","location":"eastus","properties":{"provisioningState":"Succeeded","flowLogs":[],"runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRg/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"133bde35-9e9c-47dc-80bb-5eac5fa73f64\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","flowLogs":[],"runningOperationIds":[]}}]}'}
+ body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"westcentralus-watcher\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRg/providers/Microsoft.Network/networkWatchers/westcentralus-watcher\",\r\n
+ \ \"etag\": \"W/\\\"bc5e7194-9820-4baf-ac3b-896b9e975c5d\\\"\",\r\n \"type\":
+ \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westcentralus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"flowLogs\": [],\r\n \"runningOperationIds\": []\r\n }\r\n
+ \ }\r\n ]\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['760']
+ content-length: ['527']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:43:03 GMT']
+ date: ['Mon, 12 Nov 2018 18: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]
x-content-type-options: [nosniff]
- x-ms-original-request-ids: [b34751d4-a685-4696-bbee-0b9604c74bd2, ff6fa195-840d-4b71-bc3e-2d98ed081f61]
status: {code: 200, message: OK}
- request:
body: 'b''{"targetResourceGroupName": "cli_test_nw_vm000001"}'''
@@ -3556,14 +3612,14 @@ interactions:
Connection: [keep-alive]
Content-Length: ['106']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRg/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/topology?api-version=2018-08-01
response:
- body: {string: "{\r\n \"id\": \"03e6be10-e525-4b28-ae97-2a925fc345c1\",\r\n \"createdDateTime\":
- \"2018-09-10T16:43:05.1379572Z\",\r\n \"lastModified\": \"2018-09-10T16:40:26.6230397Z\",\r\n
+ body: {string: "{\r\n \"id\": \"e127c624-3571-45b8-bec5-52f2699a1094\",\r\n \"createdDateTime\":
+ \"2018-11-12T18:05:25.8037892Z\",\r\n \"lastModified\": \"2018-11-12T18:03:53.5878968Z\",\r\n
\ \"resources\": [\r\n {\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/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_nw_vm000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n
@@ -3598,25 +3654,25 @@ interactions:
\ \"associationType\": \"Contains\"\r\n }\r\n ],\r\n \"properties\":
{}\r\n },\r\n {\r\n \"name\": \"vm1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\r\n
\ \"location\": \"westcentralus\",\r\n \"associations\": [\r\n {\r\n
- \ \"name\": \"rg-cleanupservice-nsg5\",\r\n \"resourceId\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg5\",\r\n
+ \ \"name\": \"rg-cleanupservice-nsg6\",\r\n \"resourceId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg6\",\r\n
\ \"associationType\": \"Associated\"\r\n }\r\n ],\r\n
\ \"properties\": {}\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/a9d06a57-c31e-4d57-a5a3-1343ca4c30c9?api-version=2018-08-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/94856c30-c6ec-4b7e-bace-6a06cf6169bb?api-version=2018-08-01']
cache-control: [no-cache]
content-length: ['5601']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:43:04 GMT']
+ date: ['Mon, 12 Nov 2018 18:05:25 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/a9d06a57-c31e-4d57-a5a3-1343ca4c30c9?api-version=2018-08-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/94856c30-c6ec-4b7e-bace-6a06cf6169bb?api-version=2018-08-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-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-subscription-writes: ['1193']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 200, message: OK}
- request:
body: null
@@ -3625,21 +3681,21 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [network watcher test-ip-flow]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 computemanagementclient/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2018-10-01
response:
- body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"1d7fb43d-9e01-4b75-a030-1498c22be010\",\r\n
+ body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"db017eb9-3480-44d3-8fc1-09914f2e8c1f\",\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_fc2dc4ee4e464ad1aee6bf10f9e3c9aa\",\r\n
+ {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_34bdc0a5331540eea8bb9ab39d9d87d5\",\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_nw_vm000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_fc2dc4ee4e464ad1aee6bf10f9e3c9aa\"\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_34bdc0a5331540eea8bb9ab39d9d87d5\"\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
@@ -3660,7 +3716,7 @@ interactions:
cache-control: [no-cache]
content-length: ['2483']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:43:05 GMT']
+ date: ['Mon, 12 Nov 2018 18:05:25 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3668,7 +3724,7 @@ interactions:
transfer-encoding: [chunked]
vary: [Accept-Encoding]
x-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31969']
+ x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31985']
status: {code: 200, message: OK}
- request:
body: null
@@ -3677,24 +3733,31 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [network watcher test-ip-flow]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2018-08-01
response:
- body: {string: '{"value":[{"name":"ps4997","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7958/providers/Microsoft.Network/networkWatchers/ps4997","etag":"W/\"a6b2e361-5b35-4477-8366-6c4e0af7ca37\"","type":"Microsoft.Network/networkWatchers","location":"eastus","properties":{"provisioningState":"Succeeded","flowLogs":[],"runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRg/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"133bde35-9e9c-47dc-80bb-5eac5fa73f64\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","flowLogs":[],"runningOperationIds":[]}}]}'}
+ body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"westcentralus-watcher\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRg/providers/Microsoft.Network/networkWatchers/westcentralus-watcher\",\r\n
+ \ \"etag\": \"W/\\\"bc5e7194-9820-4baf-ac3b-896b9e975c5d\\\"\",\r\n \"type\":
+ \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westcentralus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"flowLogs\": [],\r\n \"runningOperationIds\": []\r\n }\r\n
+ \ }\r\n ]\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['760']
+ content-length: ['527']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:43:05 GMT']
+ date: ['Mon, 12 Nov 2018 18:05: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-content-type-options: [nosniff]
- x-ms-original-request-ids: [29d43854-a16f-429e-9fc9-385a1aecc1db, d7c56b86-45c6-4bba-bf2b-cdc53ef43ec0]
status: {code: 200, message: OK}
- request:
body: 'b''{"targetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/virtualMachines/vm1",
@@ -3707,28 +3770,28 @@ interactions:
Connection: [keep-alive]
Content-Length: ['357']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRg/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/ipFlowVerify?api-version=2018-08-01
response:
body: {string: "{\r\n \"access\": \"Deny\",\r\n \"ruleName\": \"securityRules/Cleanuptool-Deny-103\",\r\n
- \ \"ruleId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg5/securityRules/Cleanuptool-Deny-103\"\r\n}"}
+ \ \"ruleId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg6/securityRules/Cleanuptool-Deny-103\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['283']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:43:13 GMT']
+ date: ['Mon, 12 Nov 2018 18:05:36 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/40364a28-0e09-4e06-a94e-a61b69d62f80?api-version=2018-08-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/329fa6c0-f960-4e2d-9ada-02d7c6a5b122?api-version=2018-08-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-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 200, message: OK}
- request:
body: null
@@ -3737,20 +3800,20 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [network watcher test-ip-flow]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/40364a28-0e09-4e06-a94e-a61b69d62f80?api-version=2018-08-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/329fa6c0-f960-4e2d-9ada-02d7c6a5b122?api-version=2018-08-01
response:
body: {string: "{\r\n \"access\": \"Deny\",\r\n \"ruleName\": \"securityRules/Cleanuptool-Deny-103\",\r\n
- \ \"ruleId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg5/securityRules/Cleanuptool-Deny-103\"\r\n}"}
+ \ \"ruleId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg6/securityRules/Cleanuptool-Deny-103\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['283']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:43:44 GMT']
+ date: ['Mon, 12 Nov 2018 18:06:07 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/40364a28-0e09-4e06-a94e-a61b69d62f80?api-version=2018-08-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/329fa6c0-f960-4e2d-9ada-02d7c6a5b122?api-version=2018-08-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -3765,21 +3828,21 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [network watcher test-ip-flow]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 computemanagementclient/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2018-10-01
response:
- body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"1d7fb43d-9e01-4b75-a030-1498c22be010\",\r\n
+ body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"db017eb9-3480-44d3-8fc1-09914f2e8c1f\",\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_fc2dc4ee4e464ad1aee6bf10f9e3c9aa\",\r\n
+ {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_34bdc0a5331540eea8bb9ab39d9d87d5\",\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_nw_vm000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_fc2dc4ee4e464ad1aee6bf10f9e3c9aa\"\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_34bdc0a5331540eea8bb9ab39d9d87d5\"\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
@@ -3800,7 +3863,7 @@ interactions:
cache-control: [no-cache]
content-length: ['2483']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:43:45 GMT']
+ date: ['Mon, 12 Nov 2018 18:06:08 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3808,7 +3871,7 @@ interactions:
transfer-encoding: [chunked]
vary: [Accept-Encoding]
x-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31968']
+ x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31984']
status: {code: 200, message: OK}
- request:
body: null
@@ -3817,24 +3880,31 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [network watcher test-ip-flow]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2018-08-01
response:
- body: {string: '{"value":[{"name":"ps4997","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7958/providers/Microsoft.Network/networkWatchers/ps4997","etag":"W/\"a6b2e361-5b35-4477-8366-6c4e0af7ca37\"","type":"Microsoft.Network/networkWatchers","location":"eastus","properties":{"provisioningState":"Succeeded","flowLogs":[],"runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRg/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"ef490ee0-81ea-4faf-b06f-7c6c9a01ab90\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","flowLogs":[],"runningOperationIds":[]}}]}'}
+ body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"westcentralus-watcher\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRg/providers/Microsoft.Network/networkWatchers/westcentralus-watcher\",\r\n
+ \ \"etag\": \"W/\\\"14e7fe59-62a9-499f-8fdd-1da37ab9d6bc\\\"\",\r\n \"type\":
+ \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westcentralus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"flowLogs\": [],\r\n \"runningOperationIds\": []\r\n }\r\n
+ \ }\r\n ]\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['760']
+ content-length: ['527']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:43:46 GMT']
+ date: ['Mon, 12 Nov 2018 18:06:08 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
vary: [Accept-Encoding]
x-content-type-options: [nosniff]
- x-ms-original-request-ids: [7181b411-e0a5-4d7c-be2f-2a5b820471bd, b73baf61-8cbe-4bf0-b235-05239558e6ab]
status: {code: 200, message: OK}
- request:
body: 'b''{"targetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/virtualMachines/vm1",
@@ -3847,8 +3917,8 @@ interactions:
Connection: [keep-alive]
Content-Length: ['358']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRg/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/ipFlowVerify?api-version=2018-08-01
@@ -3859,9 +3929,9 @@ interactions:
cache-control: [no-cache]
content-length: ['103']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:43:52 GMT']
+ date: ['Mon, 12 Nov 2018 18:06:14 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/8dc9924e-65b0-4384-9079-b0baeac1ed85?api-version=2018-08-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/c6219de1-651b-493c-9897-889cc3c9ba92?api-version=2018-08-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -3877,10 +3947,10 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [network watcher test-ip-flow]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/8dc9924e-65b0-4384-9079-b0baeac1ed85?api-version=2018-08-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/c6219de1-651b-493c-9897-889cc3c9ba92?api-version=2018-08-01
response:
body: {string: "{\r\n \"access\": \"Allow\",\r\n \"ruleName\": \"defaultSecurityRules/AllowInternetOutBound\",\r\n
\ \"ruleId\": \"\"\r\n}"}
@@ -3888,9 +3958,9 @@ interactions:
cache-control: [no-cache]
content-length: ['103']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:44:22 GMT']
+ date: ['Mon, 12 Nov 2018 18:06:44 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/8dc9924e-65b0-4384-9079-b0baeac1ed85?api-version=2018-08-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/c6219de1-651b-493c-9897-889cc3c9ba92?api-version=2018-08-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -3905,21 +3975,21 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [network watcher show-security-group-view]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 computemanagementclient/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2018-10-01
response:
- body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"1d7fb43d-9e01-4b75-a030-1498c22be010\",\r\n
+ body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"db017eb9-3480-44d3-8fc1-09914f2e8c1f\",\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_fc2dc4ee4e464ad1aee6bf10f9e3c9aa\",\r\n
+ {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_34bdc0a5331540eea8bb9ab39d9d87d5\",\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_nw_vm000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_fc2dc4ee4e464ad1aee6bf10f9e3c9aa\"\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_34bdc0a5331540eea8bb9ab39d9d87d5\"\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
@@ -3940,7 +4010,7 @@ interactions:
cache-control: [no-cache]
content-length: ['2483']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:44:24 GMT']
+ date: ['Mon, 12 Nov 2018 18:06:46 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3948,7 +4018,7 @@ interactions:
transfer-encoding: [chunked]
vary: [Accept-Encoding]
x-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31967']
+ x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31983']
status: {code: 200, message: OK}
- request:
body: null
@@ -3957,24 +4027,31 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [network watcher show-security-group-view]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2018-08-01
response:
- body: {string: '{"value":[{"name":"ps4997","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7958/providers/Microsoft.Network/networkWatchers/ps4997","etag":"W/\"a6b2e361-5b35-4477-8366-6c4e0af7ca37\"","type":"Microsoft.Network/networkWatchers","location":"eastus","properties":{"provisioningState":"Succeeded","flowLogs":[],"runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRg/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"348dadb2-ac46-4471-a744-6fba3586d586\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","flowLogs":[],"runningOperationIds":[]}}]}'}
+ body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"westcentralus-watcher\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRg/providers/Microsoft.Network/networkWatchers/westcentralus-watcher\",\r\n
+ \ \"etag\": \"W/\\\"492e3f1e-2e50-4c29-9eeb-9136e2d8b47b\\\"\",\r\n \"type\":
+ \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westcentralus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"flowLogs\": [],\r\n \"runningOperationIds\": []\r\n }\r\n
+ \ }\r\n ]\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['760']
+ content-length: ['527']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:44:25 GMT']
+ date: ['Mon, 12 Nov 2018 18: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]
x-content-type-options: [nosniff]
- x-ms-original-request-ids: [bcee56b5-1cbf-4597-b8e5-417567c6ecf9, 3e3e8aee-0662-4742-adab-7aac086f975c]
status: {code: 200, message: OK}
- request:
body: 'b''{"targetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/virtualMachines/vm1"}'''
@@ -3985,8 +4062,8 @@ interactions:
Connection: [keep-alive]
Content-Length: ['214']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRg/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/securityGroupView?api-version=2018-08-01
@@ -3996,7 +4073,7 @@ interactions:
{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/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_nw_vm000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/securityRules/default-allow-ssh\",\r\n
- \ \"etag\": \"W/\\\"9e4936fa-c2e1-4df1-bc83-d71f4c858b05\\\"\",\r\n
+ \ \"etag\": \"W/\\\"6c9d13f9-aabd-4020-8d55-7be72efcbe17\\\"\",\r\n
\ \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n
\ \"properties\": {\r\n \"provisioningState\":
\"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\":
@@ -4008,8 +4085,8 @@ interactions:
[]\r\n }\r\n }\r\n ]\r\n },\r\n \"subnetAssociation\":
{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\r\n
\ \"securityRules\": [\r\n {\r\n \"name\":
- \"Cleanuptool-Allow-4001\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg5/securityRules/Cleanuptool-Allow-4001\",\r\n
- \ \"etag\": \"W/\\\"46ef645a-78b6-467d-bbdc-08d2a27fda32\\\"\",\r\n
+ \"Cleanuptool-Allow-4001\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg6/securityRules/Cleanuptool-Allow-4001\",\r\n
+ \ \"etag\": \"W/\\\"dc88f725-709c-41c3-a850-de95a71c7db1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n
\ \"properties\": {\r\n \"provisioningState\":
\"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\":
@@ -4019,8 +4096,8 @@ interactions:
\"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\":
[],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\":
[]\r\n }\r\n },\r\n {\r\n \"name\":
- \"Cleanuptool-Allow-100\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg5/securityRules/Cleanuptool-Allow-100\",\r\n
- \ \"etag\": \"W/\\\"46ef645a-78b6-467d-bbdc-08d2a27fda32\\\"\",\r\n
+ \"Cleanuptool-Allow-100\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg6/securityRules/Cleanuptool-Allow-100\",\r\n
+ \ \"etag\": \"W/\\\"dc88f725-709c-41c3-a850-de95a71c7db1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n
\ \"properties\": {\r\n \"provisioningState\":
\"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\":
@@ -4047,8 +4124,8 @@ interactions:
\ \"13.106.174.32/27\",\r\n \"13.106.4.96/27\"\r\n
\ ],\r\n \"destinationAddressPrefixes\": []\r\n
\ }\r\n },\r\n {\r\n \"name\":
- \"Cleanuptool-Allow-101\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg5/securityRules/Cleanuptool-Allow-101\",\r\n
- \ \"etag\": \"W/\\\"46ef645a-78b6-467d-bbdc-08d2a27fda32\\\"\",\r\n
+ \"Cleanuptool-Allow-101\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg6/securityRules/Cleanuptool-Allow-101\",\r\n
+ \ \"etag\": \"W/\\\"dc88f725-709c-41c3-a850-de95a71c7db1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n
\ \"properties\": {\r\n \"provisioningState\":
\"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\":
@@ -4061,8 +4138,8 @@ interactions:
\ \"445\",\r\n \"23\",\r\n \"135\"\r\n
\ ],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\":
[]\r\n }\r\n },\r\n {\r\n \"name\":
- \"Cleanuptool-Allow-102\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg5/securityRules/Cleanuptool-Allow-102\",\r\n
- \ \"etag\": \"W/\\\"46ef645a-78b6-467d-bbdc-08d2a27fda32\\\"\",\r\n
+ \"Cleanuptool-Allow-102\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg6/securityRules/Cleanuptool-Allow-102\",\r\n
+ \ \"etag\": \"W/\\\"dc88f725-709c-41c3-a850-de95a71c7db1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n
\ \"properties\": {\r\n \"provisioningState\":
\"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\":
@@ -4075,8 +4152,8 @@ interactions:
\ \"445\",\r\n \"23\",\r\n \"135\"\r\n
\ ],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\":
[]\r\n }\r\n },\r\n {\r\n \"name\":
- \"Cleanuptool-Deny-103\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg5/securityRules/Cleanuptool-Deny-103\",\r\n
- \ \"etag\": \"W/\\\"46ef645a-78b6-467d-bbdc-08d2a27fda32\\\"\",\r\n
+ \"Cleanuptool-Deny-103\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg6/securityRules/Cleanuptool-Deny-103\",\r\n
+ \ \"etag\": \"W/\\\"dc88f725-709c-41c3-a850-de95a71c7db1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n
\ \"properties\": {\r\n \"provisioningState\":
\"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\":
@@ -4395,16 +4472,16 @@ interactions:
cache-control: [no-cache]
content-length: ['33055']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:44:30 GMT']
+ date: ['Mon, 12 Nov 2018 18:06:54 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0deb81c3-4c88-4ce3-a3ff-45f557ae9ab4?api-version=2018-08-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/f44ca0c7-7133-4b01-8a60-16aac68939fa?api-version=2018-08-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-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-subscription-writes: ['1193']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 200, message: OK}
- request:
body: null
@@ -4413,17 +4490,17 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [network watcher show-security-group-view]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0deb81c3-4c88-4ce3-a3ff-45f557ae9ab4?api-version=2018-08-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/f44ca0c7-7133-4b01-8a60-16aac68939fa?api-version=2018-08-01
response:
body: {string: "{\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n
\ \"securityRuleAssociations\": {\r\n \"networkInterfaceAssociation\":
{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/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_nw_vm000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/securityRules/default-allow-ssh\",\r\n
- \ \"etag\": \"W/\\\"9e4936fa-c2e1-4df1-bc83-d71f4c858b05\\\"\",\r\n
+ \ \"etag\": \"W/\\\"6c9d13f9-aabd-4020-8d55-7be72efcbe17\\\"\",\r\n
\ \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n
\ \"properties\": {\r\n \"provisioningState\":
\"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\":
@@ -4435,8 +4512,8 @@ interactions:
[]\r\n }\r\n }\r\n ]\r\n },\r\n \"subnetAssociation\":
{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\r\n
\ \"securityRules\": [\r\n {\r\n \"name\":
- \"Cleanuptool-Allow-4001\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg5/securityRules/Cleanuptool-Allow-4001\",\r\n
- \ \"etag\": \"W/\\\"46ef645a-78b6-467d-bbdc-08d2a27fda32\\\"\",\r\n
+ \"Cleanuptool-Allow-4001\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg6/securityRules/Cleanuptool-Allow-4001\",\r\n
+ \ \"etag\": \"W/\\\"dc88f725-709c-41c3-a850-de95a71c7db1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n
\ \"properties\": {\r\n \"provisioningState\":
\"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\":
@@ -4446,8 +4523,8 @@ interactions:
\"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\":
[],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\":
[]\r\n }\r\n },\r\n {\r\n \"name\":
- \"Cleanuptool-Allow-100\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg5/securityRules/Cleanuptool-Allow-100\",\r\n
- \ \"etag\": \"W/\\\"46ef645a-78b6-467d-bbdc-08d2a27fda32\\\"\",\r\n
+ \"Cleanuptool-Allow-100\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg6/securityRules/Cleanuptool-Allow-100\",\r\n
+ \ \"etag\": \"W/\\\"dc88f725-709c-41c3-a850-de95a71c7db1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n
\ \"properties\": {\r\n \"provisioningState\":
\"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\":
@@ -4474,8 +4551,8 @@ interactions:
\ \"13.106.174.32/27\",\r\n \"13.106.4.96/27\"\r\n
\ ],\r\n \"destinationAddressPrefixes\": []\r\n
\ }\r\n },\r\n {\r\n \"name\":
- \"Cleanuptool-Allow-101\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg5/securityRules/Cleanuptool-Allow-101\",\r\n
- \ \"etag\": \"W/\\\"46ef645a-78b6-467d-bbdc-08d2a27fda32\\\"\",\r\n
+ \"Cleanuptool-Allow-101\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg6/securityRules/Cleanuptool-Allow-101\",\r\n
+ \ \"etag\": \"W/\\\"dc88f725-709c-41c3-a850-de95a71c7db1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n
\ \"properties\": {\r\n \"provisioningState\":
\"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\":
@@ -4488,8 +4565,8 @@ interactions:
\ \"445\",\r\n \"23\",\r\n \"135\"\r\n
\ ],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\":
[]\r\n }\r\n },\r\n {\r\n \"name\":
- \"Cleanuptool-Allow-102\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg5/securityRules/Cleanuptool-Allow-102\",\r\n
- \ \"etag\": \"W/\\\"46ef645a-78b6-467d-bbdc-08d2a27fda32\\\"\",\r\n
+ \"Cleanuptool-Allow-102\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg6/securityRules/Cleanuptool-Allow-102\",\r\n
+ \ \"etag\": \"W/\\\"dc88f725-709c-41c3-a850-de95a71c7db1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n
\ \"properties\": {\r\n \"provisioningState\":
\"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\":
@@ -4502,8 +4579,8 @@ interactions:
\ \"445\",\r\n \"23\",\r\n \"135\"\r\n
\ ],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\":
[]\r\n }\r\n },\r\n {\r\n \"name\":
- \"Cleanuptool-Deny-103\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg5/securityRules/Cleanuptool-Deny-103\",\r\n
- \ \"etag\": \"W/\\\"46ef645a-78b6-467d-bbdc-08d2a27fda32\\\"\",\r\n
+ \"Cleanuptool-Deny-103\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg6/securityRules/Cleanuptool-Deny-103\",\r\n
+ \ \"etag\": \"W/\\\"dc88f725-709c-41c3-a850-de95a71c7db1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n
\ \"properties\": {\r\n \"provisioningState\":
\"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\":
@@ -4822,9 +4899,9 @@ interactions:
cache-control: [no-cache]
content-length: ['33167']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:45:00 GMT']
+ date: ['Mon, 12 Nov 2018 18:07:24 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0deb81c3-4c88-4ce3-a3ff-45f557ae9ab4?api-version=2018-08-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/f44ca0c7-7133-4b01-8a60-16aac68939fa?api-version=2018-08-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -4839,21 +4916,21 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [network watcher show-next-hop]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 computemanagementclient/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ computemanagementclient/4.3.1 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2018-10-01
response:
- body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"1d7fb43d-9e01-4b75-a030-1498c22be010\",\r\n
+ body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"db017eb9-3480-44d3-8fc1-09914f2e8c1f\",\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_fc2dc4ee4e464ad1aee6bf10f9e3c9aa\",\r\n
+ {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_34bdc0a5331540eea8bb9ab39d9d87d5\",\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_nw_vm000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_fc2dc4ee4e464ad1aee6bf10f9e3c9aa\"\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_34bdc0a5331540eea8bb9ab39d9d87d5\"\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
@@ -4874,7 +4951,7 @@ interactions:
cache-control: [no-cache]
content-length: ['2483']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:45:02 GMT']
+ date: ['Mon, 12 Nov 2018 18:07:25 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4882,7 +4959,7 @@ interactions:
transfer-encoding: [chunked]
vary: [Accept-Encoding]
x-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31966']
+ x-ms-ratelimit-remaining-resource: ['Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31982']
status: {code: 200, message: OK}
- request:
body: null
@@ -4891,24 +4968,31 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [network watcher show-next-hop]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2018-08-01
response:
- body: {string: '{"value":[{"name":"ps4997","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7958/providers/Microsoft.Network/networkWatchers/ps4997","etag":"W/\"c1adb05c-d0e7-4dd8-ae82-5a34afb30b4d\"","type":"Microsoft.Network/networkWatchers","location":"eastus","properties":{"provisioningState":"Succeeded","flowLogs":[],"runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRg/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"070af464-b07c-476e-a80e-6e59a15a2b8c\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","flowLogs":[],"runningOperationIds":[]}}]}'}
+ body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"westcentralus-watcher\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRg/providers/Microsoft.Network/networkWatchers/westcentralus-watcher\",\r\n
+ \ \"etag\": \"W/\\\"df3aea2a-d019-4731-a0c8-b84a0e31a03c\\\"\",\r\n \"type\":
+ \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westcentralus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"flowLogs\": [],\r\n \"runningOperationIds\": []\r\n }\r\n
+ \ }\r\n ]\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['760']
+ content-length: ['527']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:45:02 GMT']
+ date: ['Mon, 12 Nov 2018 18:07: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-content-type-options: [nosniff]
- x-ms-original-request-ids: [79bd56dc-41a3-4371-ae74-cce40d2f00a7, 45dc137d-0e21-4526-bbaf-fc8dc4376be0]
status: {code: 200, message: OK}
- request:
body: 'b''{"targetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nw_vm000001/providers/Microsoft.Compute/virtualMachines/vm1",
@@ -4920,8 +5004,8 @@ interactions:
Connection: [keep-alive]
Content-Length: ['282']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRg/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/nextHop?api-version=2018-08-01
@@ -4932,16 +5016,16 @@ interactions:
cache-control: [no-cache]
content-length: ['74']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:45:12 GMT']
+ date: ['Mon, 12 Nov 2018 18:07:34 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/71c49043-01bd-40a6-9ed4-c20e89e6b5fb?api-version=2018-08-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/626b85a8-b439-44c2-9705-d2567ea78198?api-version=2018-08-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-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-subscription-writes: ['1196']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 200, message: OK}
- request:
body: null
@@ -4950,10 +5034,10 @@ interactions:
Accept-Encoding: ['gzip, deflate']
CommandName: [network watcher show-next-hop]
Connection: [keep-alive]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 networkmanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ networkmanagementclient/2.3.0 Azure-SDK-For-Python AZURECLI/2.0.51]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/71c49043-01bd-40a6-9ed4-c20e89e6b5fb?api-version=2018-08-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/626b85a8-b439-44c2-9705-d2567ea78198?api-version=2018-08-01
response:
body: {string: "{\r\n \"nextHopType\": \"VirtualNetwork\",\r\n \"routeTableId\":
\"System Route\"\r\n}"}
@@ -4961,9 +5045,9 @@ interactions:
cache-control: [no-cache]
content-length: ['74']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 10 Sep 2018 16:45:41 GMT']
+ date: ['Mon, 12 Nov 2018 18:08:04 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/71c49043-01bd-40a6-9ed4-c20e89e6b5fb?api-version=2018-08-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/626b85a8-b439-44c2-9705-d2567ea78198?api-version=2018-08-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -4980,9 +5064,8 @@ interactions:
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.5
- msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python
- AZURECLI/2.0.46]
+ User-Agent: [python/3.6.1 (Windows-10-10.0.17763-SP0) msrest/0.6.1 msrest_azure/0.4.34
+ resourcemanagementclient/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.51]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nw_vm000001?api-version=2018-05-01
@@ -4991,9 +5074,9 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Mon, 10 Sep 2018 16:45:43 GMT']
+ date: ['Mon, 12 Nov 2018 18:08:06 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGTlc6NUZWTVBLM1g3QUZUUUFNM1FLUUpUR05JSVRIUjZKWXxEMTQ2MTQ1N0RERTFCQjQ2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2018-05-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGTlc6NUZWTTRIVllOTEs2REpTT0dQREhLM0xBQ1I2SUs0QXw1QTY4MjRBMkU3QUM3RjMyLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2018-05-01']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-content-type-options: [nosniff]
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/test_network_commands.py b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/test_network_commands.py
index 404f8fd9653..663b4f5ec9d 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/test_network_commands.py
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/latest/test_network_commands.py
@@ -217,6 +217,23 @@ def test_network_app_gateway_with_defaults(self, resource_group):
self.cmd('network application-gateway list --resource-group {rg}', checks=self.check('length(@)', ag_count - 1))
+class NetworkAppGatewayZoneScenario(ScenarioTest):
+
+ @ResourceGroupPreparer(name_prefix='cli_test_ag_zone', location='westus2')
+ def test_network_ag_zone(self, resource_group):
+ self.kwargs.update({
+ 'gateway': 'ag1',
+ 'ip': 'pubip1'
+ })
+ self.cmd('network public-ip create -g {rg} -n {ip} --sku Standard')
+ self.cmd('network application-gateway create -g {rg} -n {gateway} --sku Standard_v2 --min-capacity 2 --zones 1 3 --public-ip-address {ip} --no-wait')
+ self.cmd('network application-gateway wait -g {rg} -n {gateway} --exists')
+ self.cmd('network application-gateway show -g {rg} -n {gateway}', checks=[
+ self.check('zones[0]', 1),
+ self.check('zones[1]', 3)
+ ])
+
+
class NetworkAppGatewayAuthCertScenario(ScenarioTest):
@ResourceGroupPreparer(name_prefix='cli_test_ag_auth_cert')
diff --git a/src/command_modules/azure-cli-network/setup.py b/src/command_modules/azure-cli-network/setup.py
index d773023db17..8dcfb39218e 100644
--- a/src/command_modules/azure-cli-network/setup.py
+++ b/src/command_modules/azure-cli-network/setup.py
@@ -14,7 +14,7 @@
logger.warn("Wheel is not available, disabling bdist_wheel hook")
cmdclass = {}
-VERSION = "2.2.8"
+VERSION = "2.2.9"
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
@@ -30,7 +30,7 @@
]
DEPENDENCIES = [
- 'azure-mgmt-network==2.2.1',
+ 'azure-mgmt-network==2.3.0',
'azure-mgmt-trafficmanager==0.50.0',
'azure-mgmt-dns==2.1.0',
'azure-cli-core',
diff --git a/src/command_modules/azure-cli-servicefabric/HISTORY.rst b/src/command_modules/azure-cli-servicefabric/HISTORY.rst
index 37b885524ae..371a4edf26c 100644
--- a/src/command_modules/azure-cli-servicefabric/HISTORY.rst
+++ b/src/command_modules/azure-cli-servicefabric/HISTORY.rst
@@ -2,6 +2,11 @@
Release History
===============
+
+0.1.8
++++++
+* Minor fixes
+
0.1.7
+++++
* Minor fixes
diff --git a/src/command_modules/azure-cli-servicefabric/setup.py b/src/command_modules/azure-cli-servicefabric/setup.py
index 4a4b27e9242..fcb71162926 100644
--- a/src/command_modules/azure-cli-servicefabric/setup.py
+++ b/src/command_modules/azure-cli-servicefabric/setup.py
@@ -16,7 +16,7 @@
logger.warn("Wheel is not available, disabling bdist_wheel hook")
cmdclass = {}
-VERSION = "0.1.7"
+VERSION = "0.1.8"
# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
@@ -37,7 +37,7 @@
DEPENDENCIES = [
'azure-graphrbac==0.52.0',
'azure-keyvault==1.1.0',
- 'azure-mgmt-network==2.2.1',
+ 'azure-mgmt-network==2.3.0',
'azure-mgmt-compute==4.3.1',
'azure-mgmt-storage==2.0.0rc4',
'azure-mgmt-servicefabric==0.2.0',
diff --git a/src/command_modules/azure-cli-vm/setup.py b/src/command_modules/azure-cli-vm/setup.py
index 157b3017fc4..fd9f5028741 100644
--- a/src/command_modules/azure-cli-vm/setup.py
+++ b/src/command_modules/azure-cli-vm/setup.py
@@ -37,7 +37,7 @@
'azure-mgmt-compute==4.3.1',
'azure-mgmt-keyvault==1.1.0',
'azure-keyvault==1.1.0',
- 'azure-mgmt-network==2.2.1',
+ 'azure-mgmt-network==2.3.0',
'azure-multiapi-storage==0.2.2',
'azure-mgmt-marketplaceordering==0.1.0',
'azure-cli-core'