From d1c91df1d05073278d76eff84c32faddb27e0a66 Mon Sep 17 00:00:00 2001 From: Rajvi Modh Date: Sun, 16 Oct 2022 19:45:11 -0700 Subject: [PATCH] update API version for az network-function traffic-collector --- .../traffic_collector/_create.py | 287 +---- .../traffic_collector/_delete.py | 16 +- .../traffic_collector/_list.py | 259 +--- .../traffic_collector/_show.py | 146 +-- .../traffic_collector/_update.py | 319 +---- .../traffic_collector/_wait.py | 144 +-- .../collector_policy/_create.py | 16 +- .../collector_policy/_delete.py | 16 +- .../collector_policy/_list.py | 16 +- .../collector_policy/_show.py | 16 +- .../collector_policy/_update.py | 36 +- .../collector_policy/_wait.py | 14 +- .../azext_metadata.json | 2 +- .../test_azure_traffic_scenario.yaml | 1141 +++++++++-------- 14 files changed, 917 insertions(+), 1511 deletions(-) diff --git a/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/_create.py b/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/_create.py index c036f916d72..15ef502c7ab 100644 --- a/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/_create.py +++ b/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/_create.py @@ -22,9 +22,9 @@ class Create(AAZCommand): """ _aaz_info = { - "version": "2022-08-01", + "version": "2022-11-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.networkfunction/azuretrafficcollectors/{}", "2022-08-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.networkfunction/azuretrafficcollectors/{}", "2022-11-01"], ] } @@ -74,96 +74,20 @@ def _build_arguments_schema(cls, *args, **kwargs): tags = cls._args_schema.tags tags.Element = AAZStrArg() - - # define Arg Group "Properties" - - _args_schema = cls._args_schema - _args_schema.collector_policies = AAZListArg( - options=["--collector-policies"], - arg_group="Properties", - help="Collector Policies for Azure Traffic Collector.", - ) - - collector_policies = cls._args_schema.collector_policies - collector_policies.Element = AAZObjectArg() - - _element = cls._args_schema.collector_policies.Element - _element.location = AAZResourceLocationArg( - options=["l", "location"], - help="Resource location.", - required=True, - fmt=AAZResourceLocationArgFormat( - resource_group_arg="resource_group", - ), - ) - _element.emission_policies = AAZListArg( - options=["emission-policies"], - help="Emission policies.", - ) - _element.ingestion_policy = AAZObjectArg( - options=["ingestion-policy"], - help="Ingestion policies.", - ) - _element.tags = AAZDictArg( - options=["tags"], - help="Resource tags.", - ) - - emission_policies = cls._args_schema.collector_policies.Element.emission_policies - emission_policies.Element = AAZObjectArg() - - _element = cls._args_schema.collector_policies.Element.emission_policies.Element - _element.emission_destinations = AAZListArg( - options=["emission-destinations"], - help="Emission policy destinations.", - ) - _element.emission_type = AAZStrArg( - options=["emission-type"], - help="Emission format type.", - enum={"IPFIX": "IPFIX"}, - ) - - emission_destinations = cls._args_schema.collector_policies.Element.emission_policies.Element.emission_destinations - emission_destinations.Element = AAZObjectArg() - - _element = cls._args_schema.collector_policies.Element.emission_policies.Element.emission_destinations.Element - _element.destination_type = AAZStrArg( - options=["destination-type"], - help="Emission destination type.", - enum={"AzureMonitor": "AzureMonitor"}, - ) - - ingestion_policy = cls._args_schema.collector_policies.Element.ingestion_policy - ingestion_policy.ingestion_sources = AAZListArg( - options=["ingestion-sources"], - help="Ingestion Sources.", - ) - ingestion_policy.ingestion_type = AAZStrArg( - options=["ingestion-type"], - help="The ingestion type.", - enum={"IPFIX": "IPFIX"}, - ) - - ingestion_sources = cls._args_schema.collector_policies.Element.ingestion_policy.ingestion_sources - ingestion_sources.Element = AAZObjectArg() - - _element = cls._args_schema.collector_policies.Element.ingestion_policy.ingestion_sources.Element - _element.resource_id = AAZStrArg( - options=["resource-id"], - help="Resource ID.", - ) - _element.source_type = AAZStrArg( - options=["source-type"], - help="Ingestion source type.", - enum={"Resource": "Resource"}, - ) - - tags = cls._args_schema.collector_policies.Element.tags - tags.Element = AAZStrArg() return cls._args_schema def _execute_operations(self): + self.pre_operations() yield self.AzureTrafficCollectorsCreateOrUpdate(ctx=self.ctx)() + self.post_operations() + + # @register_callback + def pre_operations(self): + pass + + # @register_callback + def post_operations(self): + pass def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) @@ -233,7 +157,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-08-01", + "api-version", "2022-11-01", required=True, ), } @@ -259,63 +183,8 @@ def content(self): typ_kwargs={"flags": {"required": True, "client_flatten": True}} ) _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}}) - _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) _builder.set_prop("tags", AAZDictType, ".tags") - properties = _builder.get(".properties") - if properties is not None: - properties.set_prop("collectorPolicies", AAZListType, ".collector_policies") - - collector_policies = _builder.get(".properties.collectorPolicies") - if collector_policies is not None: - collector_policies.set_elements(AAZObjectType, ".") - - _elements = _builder.get(".properties.collectorPolicies[]") - if _elements is not None: - _elements.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}}) - _elements.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) - _elements.set_prop("tags", AAZDictType, ".tags") - - properties = _builder.get(".properties.collectorPolicies[].properties") - if properties is not None: - properties.set_prop("emissionPolicies", AAZListType, ".emission_policies") - properties.set_prop("ingestionPolicy", AAZObjectType, ".ingestion_policy") - - emission_policies = _builder.get(".properties.collectorPolicies[].properties.emissionPolicies") - if emission_policies is not None: - emission_policies.set_elements(AAZObjectType, ".") - - _elements = _builder.get(".properties.collectorPolicies[].properties.emissionPolicies[]") - if _elements is not None: - _elements.set_prop("emissionDestinations", AAZListType, ".emission_destinations") - _elements.set_prop("emissionType", AAZStrType, ".emission_type") - - emission_destinations = _builder.get(".properties.collectorPolicies[].properties.emissionPolicies[].emissionDestinations") - if emission_destinations is not None: - emission_destinations.set_elements(AAZObjectType, ".") - - _elements = _builder.get(".properties.collectorPolicies[].properties.emissionPolicies[].emissionDestinations[]") - if _elements is not None: - _elements.set_prop("destinationType", AAZStrType, ".destination_type") - - ingestion_policy = _builder.get(".properties.collectorPolicies[].properties.ingestionPolicy") - if ingestion_policy is not None: - ingestion_policy.set_prop("ingestionSources", AAZListType, ".ingestion_sources") - ingestion_policy.set_prop("ingestionType", AAZStrType, ".ingestion_type") - - ingestion_sources = _builder.get(".properties.collectorPolicies[].properties.ingestionPolicy.ingestionSources") - if ingestion_sources is not None: - ingestion_sources.set_elements(AAZObjectType, ".") - - _elements = _builder.get(".properties.collectorPolicies[].properties.ingestionPolicy.ingestionSources[]") - if _elements is not None: - _elements.set_prop("resourceId", AAZStrType, ".resource_id") - _elements.set_prop("sourceType", AAZStrType, ".source_type") - - tags = _builder.get(".properties.collectorPolicies[].tags") - if tags is not None: - tags.set_elements(AAZStrType, ".") - tags = _builder.get(".tags") if tags is not None: tags.set_elements(AAZStrType, ".") @@ -367,6 +236,7 @@ def _build_schema_on_200_201(cls): properties = cls._schema_on_200_201.properties properties.collector_policies = AAZListType( serialized_name="collectorPolicies", + flags={"read_only": True}, ) properties.provisioning_state = AAZStrType( serialized_name="provisioningState", @@ -374,115 +244,15 @@ def _build_schema_on_200_201(cls): ) properties.virtual_hub = AAZObjectType( serialized_name="virtualHub", - ) - - collector_policies = cls._schema_on_200_201.properties.collector_policies - collector_policies.Element = AAZObjectType() - - _element = cls._schema_on_200_201.properties.collector_policies.Element - _element.etag = AAZStrType( - flags={"read_only": True}, - ) - _element.id = AAZStrType( - flags={"read_only": True}, - ) - _element.location = AAZStrType( - flags={"required": True}, - ) - _element.name = AAZStrType( flags={"read_only": True}, ) - _element.properties = AAZObjectType( - flags={"client_flatten": True}, - ) - _element.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _element.tags = AAZDictType() - _element.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = cls._schema_on_200_201.properties.collector_policies.Element.properties - properties.emission_policies = AAZListType( - serialized_name="emissionPolicies", - ) - properties.ingestion_policy = AAZObjectType( - serialized_name="ingestionPolicy", - ) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - - emission_policies = cls._schema_on_200_201.properties.collector_policies.Element.properties.emission_policies - emission_policies.Element = AAZObjectType() + _build_schema_resource_reference_read(properties.virtual_hub) - _element = cls._schema_on_200_201.properties.collector_policies.Element.properties.emission_policies.Element - _element.emission_destinations = AAZListType( - serialized_name="emissionDestinations", - ) - _element.emission_type = AAZStrType( - serialized_name="emissionType", - ) - - emission_destinations = cls._schema_on_200_201.properties.collector_policies.Element.properties.emission_policies.Element.emission_destinations - emission_destinations.Element = AAZObjectType() - - _element = cls._schema_on_200_201.properties.collector_policies.Element.properties.emission_policies.Element.emission_destinations.Element - _element.destination_type = AAZStrType( - serialized_name="destinationType", - ) - - ingestion_policy = cls._schema_on_200_201.properties.collector_policies.Element.properties.ingestion_policy - ingestion_policy.ingestion_sources = AAZListType( - serialized_name="ingestionSources", - ) - ingestion_policy.ingestion_type = AAZStrType( - serialized_name="ingestionType", - ) - - ingestion_sources = cls._schema_on_200_201.properties.collector_policies.Element.properties.ingestion_policy.ingestion_sources - ingestion_sources.Element = AAZObjectType() - - _element = cls._schema_on_200_201.properties.collector_policies.Element.properties.ingestion_policy.ingestion_sources.Element - _element.resource_id = AAZStrType( - serialized_name="resourceId", - ) - _element.source_type = AAZStrType( - serialized_name="sourceType", - ) - - system_data = cls._schema_on_200_201.properties.collector_policies.Element.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - flags={"read_only": True}, - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - flags={"read_only": True}, - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - flags={"read_only": True}, - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - flags={"read_only": True}, - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - flags={"read_only": True}, - ) - - tags = cls._schema_on_200_201.properties.collector_policies.Element.tags - tags.Element = AAZStrType() - - virtual_hub = cls._schema_on_200_201.properties.virtual_hub - virtual_hub.id = AAZStrType( + collector_policies = cls._schema_on_200_201.properties.collector_policies + collector_policies.Element = AAZObjectType( flags={"read_only": True}, ) + _build_schema_resource_reference_read(collector_policies.Element) system_data = cls._schema_on_200_201.system_data system_data.created_at = AAZStrType( @@ -512,4 +282,25 @@ def _build_schema_on_200_201(cls): return cls._schema_on_200_201 +_schema_resource_reference_read = None + + +def _build_schema_resource_reference_read(_schema): + global _schema_resource_reference_read + if _schema_resource_reference_read is not None: + _schema.id = _schema_resource_reference_read.id + return + + _schema_resource_reference_read = AAZObjectType( + flags={"read_only": True} + ) + + resource_reference_read = _schema_resource_reference_read + resource_reference_read.id = AAZStrType( + flags={"read_only": True}, + ) + + _schema.id = _schema_resource_reference_read.id + + __all__ = ["Create"] diff --git a/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/_delete.py b/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/_delete.py index 18796e6255a..b84dbdd949c 100644 --- a/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/_delete.py +++ b/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/_delete.py @@ -23,9 +23,9 @@ class Delete(AAZCommand): """ _aaz_info = { - "version": "2022-08-01", + "version": "2022-11-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.networkfunction/azuretrafficcollectors/{}", "2022-08-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.networkfunction/azuretrafficcollectors/{}", "2022-11-01"], ] } @@ -58,7 +58,17 @@ def _build_arguments_schema(cls, *args, **kwargs): return cls._args_schema def _execute_operations(self): + self.pre_operations() yield self.AzureTrafficCollectorsDelete(ctx=self.ctx)() + self.post_operations() + + # @register_callback + def pre_operations(self): + pass + + # @register_callback + def post_operations(self): + pass class AzureTrafficCollectorsDelete(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" @@ -133,7 +143,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-08-01", + "api-version", "2022-11-01", required=True, ), } diff --git a/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/_list.py b/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/_list.py index 1a6bef7a5d0..85858d89692 100644 --- a/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/_list.py +++ b/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/_list.py @@ -22,10 +22,10 @@ class List(AAZCommand): """ _aaz_info = { - "version": "2022-08-01", + "version": "2022-11-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/providers/microsoft.networkfunction/azuretrafficcollectors", "2022-08-01"], - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.networkfunction/azuretrafficcollectors", "2022-08-01"], + ["mgmt-plane", "/subscriptions/{}/providers/microsoft.networkfunction/azuretrafficcollectors", "2022-11-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.networkfunction/azuretrafficcollectors", "2022-11-01"], ] } @@ -48,12 +48,22 @@ def _build_arguments_schema(cls, *args, **kwargs): return cls._args_schema def _execute_operations(self): + self.pre_operations() condition_0 = has_value(self.ctx.args.resource_group) and has_value(self.ctx.subscription_id) condition_1 = has_value(self.ctx.subscription_id) and has_value(self.ctx.args.resource_group) is not True if condition_0: self.AzureTrafficCollectorsByResourceGroupList(ctx=self.ctx)() if condition_1: self.AzureTrafficCollectorsBySubscriptionList(ctx=self.ctx)() + self.post_operations() + + # @register_callback + def pre_operations(self): + pass + + # @register_callback + def post_operations(self): + pass def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance.value, client_flatten=True) @@ -104,7 +114,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-08-01", + "api-version", "2022-11-01", required=True, ), } @@ -174,6 +184,7 @@ def _build_schema_on_200(cls): properties = cls._schema_on_200.value.Element.properties properties.collector_policies = AAZListType( serialized_name="collectorPolicies", + flags={"read_only": True}, ) properties.provisioning_state = AAZStrType( serialized_name="provisioningState", @@ -181,115 +192,15 @@ def _build_schema_on_200(cls): ) properties.virtual_hub = AAZObjectType( serialized_name="virtualHub", - ) - - collector_policies = cls._schema_on_200.value.Element.properties.collector_policies - collector_policies.Element = AAZObjectType() - - _element = cls._schema_on_200.value.Element.properties.collector_policies.Element - _element.etag = AAZStrType( - flags={"read_only": True}, - ) - _element.id = AAZStrType( - flags={"read_only": True}, - ) - _element.location = AAZStrType( - flags={"required": True}, - ) - _element.name = AAZStrType( - flags={"read_only": True}, - ) - _element.properties = AAZObjectType( - flags={"client_flatten": True}, - ) - _element.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _element.tags = AAZDictType() - _element.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = cls._schema_on_200.value.Element.properties.collector_policies.Element.properties - properties.emission_policies = AAZListType( - serialized_name="emissionPolicies", - ) - properties.ingestion_policy = AAZObjectType( - serialized_name="ingestionPolicy", - ) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - - emission_policies = cls._schema_on_200.value.Element.properties.collector_policies.Element.properties.emission_policies - emission_policies.Element = AAZObjectType() - - _element = cls._schema_on_200.value.Element.properties.collector_policies.Element.properties.emission_policies.Element - _element.emission_destinations = AAZListType( - serialized_name="emissionDestinations", - ) - _element.emission_type = AAZStrType( - serialized_name="emissionType", - ) - - emission_destinations = cls._schema_on_200.value.Element.properties.collector_policies.Element.properties.emission_policies.Element.emission_destinations - emission_destinations.Element = AAZObjectType() - - _element = cls._schema_on_200.value.Element.properties.collector_policies.Element.properties.emission_policies.Element.emission_destinations.Element - _element.destination_type = AAZStrType( - serialized_name="destinationType", - ) - - ingestion_policy = cls._schema_on_200.value.Element.properties.collector_policies.Element.properties.ingestion_policy - ingestion_policy.ingestion_sources = AAZListType( - serialized_name="ingestionSources", - ) - ingestion_policy.ingestion_type = AAZStrType( - serialized_name="ingestionType", - ) - - ingestion_sources = cls._schema_on_200.value.Element.properties.collector_policies.Element.properties.ingestion_policy.ingestion_sources - ingestion_sources.Element = AAZObjectType() - - _element = cls._schema_on_200.value.Element.properties.collector_policies.Element.properties.ingestion_policy.ingestion_sources.Element - _element.resource_id = AAZStrType( - serialized_name="resourceId", - ) - _element.source_type = AAZStrType( - serialized_name="sourceType", - ) - - system_data = cls._schema_on_200.value.Element.properties.collector_policies.Element.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - flags={"read_only": True}, - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - flags={"read_only": True}, - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", flags={"read_only": True}, ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - flags={"read_only": True}, - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - flags={"read_only": True}, - ) - - tags = cls._schema_on_200.value.Element.properties.collector_policies.Element.tags - tags.Element = AAZStrType() + _build_schema_resource_reference_read(properties.virtual_hub) - virtual_hub = cls._schema_on_200.value.Element.properties.virtual_hub - virtual_hub.id = AAZStrType( + collector_policies = cls._schema_on_200.value.Element.properties.collector_policies + collector_policies.Element = AAZObjectType( flags={"read_only": True}, ) + _build_schema_resource_reference_read(collector_policies.Element) system_data = cls._schema_on_200.value.Element.system_data system_data.created_at = AAZStrType( @@ -358,7 +269,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-08-01", + "api-version", "2022-11-01", required=True, ), } @@ -428,6 +339,7 @@ def _build_schema_on_200(cls): properties = cls._schema_on_200.value.Element.properties properties.collector_policies = AAZListType( serialized_name="collectorPolicies", + flags={"read_only": True}, ) properties.provisioning_state = AAZStrType( serialized_name="provisioningState", @@ -435,115 +347,15 @@ def _build_schema_on_200(cls): ) properties.virtual_hub = AAZObjectType( serialized_name="virtualHub", - ) - - collector_policies = cls._schema_on_200.value.Element.properties.collector_policies - collector_policies.Element = AAZObjectType() - - _element = cls._schema_on_200.value.Element.properties.collector_policies.Element - _element.etag = AAZStrType( - flags={"read_only": True}, - ) - _element.id = AAZStrType( - flags={"read_only": True}, - ) - _element.location = AAZStrType( - flags={"required": True}, - ) - _element.name = AAZStrType( - flags={"read_only": True}, - ) - _element.properties = AAZObjectType( - flags={"client_flatten": True}, - ) - _element.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _element.tags = AAZDictType() - _element.type = AAZStrType( flags={"read_only": True}, ) + _build_schema_resource_reference_read(properties.virtual_hub) - properties = cls._schema_on_200.value.Element.properties.collector_policies.Element.properties - properties.emission_policies = AAZListType( - serialized_name="emissionPolicies", - ) - properties.ingestion_policy = AAZObjectType( - serialized_name="ingestionPolicy", - ) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - - emission_policies = cls._schema_on_200.value.Element.properties.collector_policies.Element.properties.emission_policies - emission_policies.Element = AAZObjectType() - - _element = cls._schema_on_200.value.Element.properties.collector_policies.Element.properties.emission_policies.Element - _element.emission_destinations = AAZListType( - serialized_name="emissionDestinations", - ) - _element.emission_type = AAZStrType( - serialized_name="emissionType", - ) - - emission_destinations = cls._schema_on_200.value.Element.properties.collector_policies.Element.properties.emission_policies.Element.emission_destinations - emission_destinations.Element = AAZObjectType() - - _element = cls._schema_on_200.value.Element.properties.collector_policies.Element.properties.emission_policies.Element.emission_destinations.Element - _element.destination_type = AAZStrType( - serialized_name="destinationType", - ) - - ingestion_policy = cls._schema_on_200.value.Element.properties.collector_policies.Element.properties.ingestion_policy - ingestion_policy.ingestion_sources = AAZListType( - serialized_name="ingestionSources", - ) - ingestion_policy.ingestion_type = AAZStrType( - serialized_name="ingestionType", - ) - - ingestion_sources = cls._schema_on_200.value.Element.properties.collector_policies.Element.properties.ingestion_policy.ingestion_sources - ingestion_sources.Element = AAZObjectType() - - _element = cls._schema_on_200.value.Element.properties.collector_policies.Element.properties.ingestion_policy.ingestion_sources.Element - _element.resource_id = AAZStrType( - serialized_name="resourceId", - ) - _element.source_type = AAZStrType( - serialized_name="sourceType", - ) - - system_data = cls._schema_on_200.value.Element.properties.collector_policies.Element.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - flags={"read_only": True}, - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - flags={"read_only": True}, - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - flags={"read_only": True}, - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - flags={"read_only": True}, - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - flags={"read_only": True}, - ) - - tags = cls._schema_on_200.value.Element.properties.collector_policies.Element.tags - tags.Element = AAZStrType() - - virtual_hub = cls._schema_on_200.value.Element.properties.virtual_hub - virtual_hub.id = AAZStrType( + collector_policies = cls._schema_on_200.value.Element.properties.collector_policies + collector_policies.Element = AAZObjectType( flags={"read_only": True}, ) + _build_schema_resource_reference_read(collector_policies.Element) system_data = cls._schema_on_200.value.Element.system_data system_data.created_at = AAZStrType( @@ -573,4 +385,25 @@ def _build_schema_on_200(cls): return cls._schema_on_200 +_schema_resource_reference_read = None + + +def _build_schema_resource_reference_read(_schema): + global _schema_resource_reference_read + if _schema_resource_reference_read is not None: + _schema.id = _schema_resource_reference_read.id + return + + _schema_resource_reference_read = AAZObjectType( + flags={"read_only": True} + ) + + resource_reference_read = _schema_resource_reference_read + resource_reference_read.id = AAZStrType( + flags={"read_only": True}, + ) + + _schema.id = _schema_resource_reference_read.id + + __all__ = ["List"] diff --git a/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/_show.py b/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/_show.py index d68289d6312..f3a9d7240f0 100644 --- a/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/_show.py +++ b/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/_show.py @@ -22,9 +22,9 @@ class Show(AAZCommand): """ _aaz_info = { - "version": "2022-08-01", + "version": "2022-11-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.networkfunction/azuretrafficcollectors/{}", "2022-08-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.networkfunction/azuretrafficcollectors/{}", "2022-11-01"], ] } @@ -56,7 +56,17 @@ def _build_arguments_schema(cls, *args, **kwargs): return cls._args_schema def _execute_operations(self): + self.pre_operations() self.AzureTrafficCollectorsGet(ctx=self.ctx)() + self.post_operations() + + # @register_callback + def pre_operations(self): + pass + + # @register_callback + def post_operations(self): + pass def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) @@ -110,7 +120,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-08-01", + "api-version", "2022-11-01", required=True, ), } @@ -170,6 +180,7 @@ def _build_schema_on_200(cls): properties = cls._schema_on_200.properties properties.collector_policies = AAZListType( serialized_name="collectorPolicies", + flags={"read_only": True}, ) properties.provisioning_state = AAZStrType( serialized_name="provisioningState", @@ -177,115 +188,15 @@ def _build_schema_on_200(cls): ) properties.virtual_hub = AAZObjectType( serialized_name="virtualHub", - ) - - collector_policies = cls._schema_on_200.properties.collector_policies - collector_policies.Element = AAZObjectType() - - _element = cls._schema_on_200.properties.collector_policies.Element - _element.etag = AAZStrType( - flags={"read_only": True}, - ) - _element.id = AAZStrType( - flags={"read_only": True}, - ) - _element.location = AAZStrType( - flags={"required": True}, - ) - _element.name = AAZStrType( - flags={"read_only": True}, - ) - _element.properties = AAZObjectType( - flags={"client_flatten": True}, - ) - _element.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _element.tags = AAZDictType() - _element.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = cls._schema_on_200.properties.collector_policies.Element.properties - properties.emission_policies = AAZListType( - serialized_name="emissionPolicies", - ) - properties.ingestion_policy = AAZObjectType( - serialized_name="ingestionPolicy", - ) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - - emission_policies = cls._schema_on_200.properties.collector_policies.Element.properties.emission_policies - emission_policies.Element = AAZObjectType() - - _element = cls._schema_on_200.properties.collector_policies.Element.properties.emission_policies.Element - _element.emission_destinations = AAZListType( - serialized_name="emissionDestinations", - ) - _element.emission_type = AAZStrType( - serialized_name="emissionType", - ) - - emission_destinations = cls._schema_on_200.properties.collector_policies.Element.properties.emission_policies.Element.emission_destinations - emission_destinations.Element = AAZObjectType() - - _element = cls._schema_on_200.properties.collector_policies.Element.properties.emission_policies.Element.emission_destinations.Element - _element.destination_type = AAZStrType( - serialized_name="destinationType", - ) - - ingestion_policy = cls._schema_on_200.properties.collector_policies.Element.properties.ingestion_policy - ingestion_policy.ingestion_sources = AAZListType( - serialized_name="ingestionSources", - ) - ingestion_policy.ingestion_type = AAZStrType( - serialized_name="ingestionType", - ) - - ingestion_sources = cls._schema_on_200.properties.collector_policies.Element.properties.ingestion_policy.ingestion_sources - ingestion_sources.Element = AAZObjectType() - - _element = cls._schema_on_200.properties.collector_policies.Element.properties.ingestion_policy.ingestion_sources.Element - _element.resource_id = AAZStrType( - serialized_name="resourceId", - ) - _element.source_type = AAZStrType( - serialized_name="sourceType", - ) - - system_data = cls._schema_on_200.properties.collector_policies.Element.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - flags={"read_only": True}, - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - flags={"read_only": True}, - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", flags={"read_only": True}, ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - flags={"read_only": True}, - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - flags={"read_only": True}, - ) - - tags = cls._schema_on_200.properties.collector_policies.Element.tags - tags.Element = AAZStrType() + _build_schema_resource_reference_read(properties.virtual_hub) - virtual_hub = cls._schema_on_200.properties.virtual_hub - virtual_hub.id = AAZStrType( + collector_policies = cls._schema_on_200.properties.collector_policies + collector_policies.Element = AAZObjectType( flags={"read_only": True}, ) + _build_schema_resource_reference_read(collector_policies.Element) system_data = cls._schema_on_200.system_data system_data.created_at = AAZStrType( @@ -315,4 +226,25 @@ def _build_schema_on_200(cls): return cls._schema_on_200 +_schema_resource_reference_read = None + + +def _build_schema_resource_reference_read(_schema): + global _schema_resource_reference_read + if _schema_resource_reference_read is not None: + _schema.id = _schema_resource_reference_read.id + return + + _schema_resource_reference_read = AAZObjectType( + flags={"read_only": True} + ) + + resource_reference_read = _schema_resource_reference_read + resource_reference_read.id = AAZStrType( + flags={"read_only": True}, + ) + + _schema.id = _schema_resource_reference_read.id + + __all__ = ["Show"] diff --git a/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/_update.py b/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/_update.py index 63a89483045..af3bf07dcbe 100644 --- a/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/_update.py +++ b/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/_update.py @@ -22,9 +22,9 @@ class Update(AAZCommand): """ _aaz_info = { - "version": "2022-08-01", + "version": "2022-11-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.networkfunction/azuretrafficcollectors/{}", "2022-08-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.networkfunction/azuretrafficcollectors/{}", "2022-11-01"], ] } @@ -60,6 +60,13 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "Parameters" _args_schema = cls._args_schema + _args_schema.location = AAZResourceLocationArg( + arg_group="Parameters", + help="Resource location.", + fmt=AAZResourceLocationArgFormat( + resource_group_arg="resource_group", + ), + ) _args_schema.tags = AAZDictArg( options=["--tags"], arg_group="Parameters", @@ -71,112 +78,33 @@ def _build_arguments_schema(cls, *args, **kwargs): tags.Element = AAZStrArg( nullable=True, ) - - # define Arg Group "Properties" - - _args_schema = cls._args_schema - _args_schema.collector_policies = AAZListArg( - options=["--collector-policies"], - arg_group="Properties", - help="Collector Policies for Azure Traffic Collector.", - nullable=True, - ) - - collector_policies = cls._args_schema.collector_policies - collector_policies.Element = AAZObjectArg( - nullable=True, - ) - - _element = cls._args_schema.collector_policies.Element - _element.emission_policies = AAZListArg( - options=["emission-policies"], - help="Emission policies.", - nullable=True, - ) - _element.ingestion_policy = AAZObjectArg( - options=["ingestion-policy"], - help="Ingestion policies.", - nullable=True, - ) - _element.tags = AAZDictArg( - options=["tags"], - help="Resource tags.", - nullable=True, - ) - - emission_policies = cls._args_schema.collector_policies.Element.emission_policies - emission_policies.Element = AAZObjectArg( - nullable=True, - ) - - _element = cls._args_schema.collector_policies.Element.emission_policies.Element - _element.emission_destinations = AAZListArg( - options=["emission-destinations"], - help="Emission policy destinations.", - nullable=True, - ) - _element.emission_type = AAZStrArg( - options=["emission-type"], - help="Emission format type.", - nullable=True, - enum={"IPFIX": "IPFIX"}, - ) - - emission_destinations = cls._args_schema.collector_policies.Element.emission_policies.Element.emission_destinations - emission_destinations.Element = AAZObjectArg( - nullable=True, - ) - - _element = cls._args_schema.collector_policies.Element.emission_policies.Element.emission_destinations.Element - _element.destination_type = AAZStrArg( - options=["destination-type"], - help="Emission destination type.", - nullable=True, - enum={"AzureMonitor": "AzureMonitor"}, - ) - - ingestion_policy = cls._args_schema.collector_policies.Element.ingestion_policy - ingestion_policy.ingestion_sources = AAZListArg( - options=["ingestion-sources"], - help="Ingestion Sources.", - nullable=True, - ) - ingestion_policy.ingestion_type = AAZStrArg( - options=["ingestion-type"], - help="The ingestion type.", - nullable=True, - enum={"IPFIX": "IPFIX"}, - ) - - ingestion_sources = cls._args_schema.collector_policies.Element.ingestion_policy.ingestion_sources - ingestion_sources.Element = AAZObjectArg( - nullable=True, - ) - - _element = cls._args_schema.collector_policies.Element.ingestion_policy.ingestion_sources.Element - _element.resource_id = AAZStrArg( - options=["resource-id"], - help="Resource ID.", - nullable=True, - ) - _element.source_type = AAZStrArg( - options=["source-type"], - help="Ingestion source type.", - nullable=True, - enum={"Resource": "Resource"}, - ) - - tags = cls._args_schema.collector_policies.Element.tags - tags.Element = AAZStrArg( - nullable=True, - ) return cls._args_schema def _execute_operations(self): + self.pre_operations() self.AzureTrafficCollectorsGet(ctx=self.ctx)() + self.pre_instance_update(self.ctx.vars.instance) self.InstanceUpdateByJson(ctx=self.ctx)() self.InstanceUpdateByGeneric(ctx=self.ctx)() + self.post_instance_update(self.ctx.vars.instance) yield self.AzureTrafficCollectorsCreateOrUpdate(ctx=self.ctx)() + self.post_operations() + + # @register_callback + def pre_operations(self): + pass + + # @register_callback + def post_operations(self): + pass + + # @register_callback + def pre_instance_update(self, instance): + pass + + # @register_callback + def post_instance_update(self, instance): + pass def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) @@ -230,7 +158,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-08-01", + "api-version", "2022-11-01", required=True, ), } @@ -329,7 +257,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-08-01", + "api-version", "2022-11-01", required=True, ), } @@ -387,62 +315,9 @@ def _update_instance(self, instance): value=instance, typ=AAZObjectType ) - _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) + _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}}) _builder.set_prop("tags", AAZDictType, ".tags") - properties = _builder.get(".properties") - if properties is not None: - properties.set_prop("collectorPolicies", AAZListType, ".collector_policies") - - collector_policies = _builder.get(".properties.collectorPolicies") - if collector_policies is not None: - collector_policies.set_elements(AAZObjectType, ".") - - _elements = _builder.get(".properties.collectorPolicies[]") - if _elements is not None: - _elements.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) - _elements.set_prop("tags", AAZDictType, ".tags") - - properties = _builder.get(".properties.collectorPolicies[].properties") - if properties is not None: - properties.set_prop("emissionPolicies", AAZListType, ".emission_policies") - properties.set_prop("ingestionPolicy", AAZObjectType, ".ingestion_policy") - - emission_policies = _builder.get(".properties.collectorPolicies[].properties.emissionPolicies") - if emission_policies is not None: - emission_policies.set_elements(AAZObjectType, ".") - - _elements = _builder.get(".properties.collectorPolicies[].properties.emissionPolicies[]") - if _elements is not None: - _elements.set_prop("emissionDestinations", AAZListType, ".emission_destinations") - _elements.set_prop("emissionType", AAZStrType, ".emission_type") - - emission_destinations = _builder.get(".properties.collectorPolicies[].properties.emissionPolicies[].emissionDestinations") - if emission_destinations is not None: - emission_destinations.set_elements(AAZObjectType, ".") - - _elements = _builder.get(".properties.collectorPolicies[].properties.emissionPolicies[].emissionDestinations[]") - if _elements is not None: - _elements.set_prop("destinationType", AAZStrType, ".destination_type") - - ingestion_policy = _builder.get(".properties.collectorPolicies[].properties.ingestionPolicy") - if ingestion_policy is not None: - ingestion_policy.set_prop("ingestionSources", AAZListType, ".ingestion_sources") - ingestion_policy.set_prop("ingestionType", AAZStrType, ".ingestion_type") - - ingestion_sources = _builder.get(".properties.collectorPolicies[].properties.ingestionPolicy.ingestionSources") - if ingestion_sources is not None: - ingestion_sources.set_elements(AAZObjectType, ".") - - _elements = _builder.get(".properties.collectorPolicies[].properties.ingestionPolicy.ingestionSources[]") - if _elements is not None: - _elements.set_prop("resourceId", AAZStrType, ".resource_id") - _elements.set_prop("sourceType", AAZStrType, ".source_type") - - tags = _builder.get(".properties.collectorPolicies[].tags") - if tags is not None: - tags.set_elements(AAZStrType, ".") - tags = _builder.get(".tags") if tags is not None: tags.set_elements(AAZStrType, ".") @@ -504,6 +379,7 @@ def _build_schema_azure_traffic_collector_read(_schema): properties = _schema_azure_traffic_collector_read.properties properties.collector_policies = AAZListType( serialized_name="collectorPolicies", + flags={"read_only": True}, ) properties.provisioning_state = AAZStrType( serialized_name="provisioningState", @@ -511,115 +387,15 @@ def _build_schema_azure_traffic_collector_read(_schema): ) properties.virtual_hub = AAZObjectType( serialized_name="virtualHub", - ) - - collector_policies = _schema_azure_traffic_collector_read.properties.collector_policies - collector_policies.Element = AAZObjectType() - - _element = _schema_azure_traffic_collector_read.properties.collector_policies.Element - _element.etag = AAZStrType( - flags={"read_only": True}, - ) - _element.id = AAZStrType( - flags={"read_only": True}, - ) - _element.location = AAZStrType( - flags={"required": True}, - ) - _element.name = AAZStrType( - flags={"read_only": True}, - ) - _element.properties = AAZObjectType( - flags={"client_flatten": True}, - ) - _element.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _element.tags = AAZDictType() - _element.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = _schema_azure_traffic_collector_read.properties.collector_policies.Element.properties - properties.emission_policies = AAZListType( - serialized_name="emissionPolicies", - ) - properties.ingestion_policy = AAZObjectType( - serialized_name="ingestionPolicy", - ) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - - emission_policies = _schema_azure_traffic_collector_read.properties.collector_policies.Element.properties.emission_policies - emission_policies.Element = AAZObjectType() - - _element = _schema_azure_traffic_collector_read.properties.collector_policies.Element.properties.emission_policies.Element - _element.emission_destinations = AAZListType( - serialized_name="emissionDestinations", - ) - _element.emission_type = AAZStrType( - serialized_name="emissionType", - ) - - emission_destinations = _schema_azure_traffic_collector_read.properties.collector_policies.Element.properties.emission_policies.Element.emission_destinations - emission_destinations.Element = AAZObjectType() - - _element = _schema_azure_traffic_collector_read.properties.collector_policies.Element.properties.emission_policies.Element.emission_destinations.Element - _element.destination_type = AAZStrType( - serialized_name="destinationType", - ) - - ingestion_policy = _schema_azure_traffic_collector_read.properties.collector_policies.Element.properties.ingestion_policy - ingestion_policy.ingestion_sources = AAZListType( - serialized_name="ingestionSources", - ) - ingestion_policy.ingestion_type = AAZStrType( - serialized_name="ingestionType", - ) - - ingestion_sources = _schema_azure_traffic_collector_read.properties.collector_policies.Element.properties.ingestion_policy.ingestion_sources - ingestion_sources.Element = AAZObjectType() - - _element = _schema_azure_traffic_collector_read.properties.collector_policies.Element.properties.ingestion_policy.ingestion_sources.Element - _element.resource_id = AAZStrType( - serialized_name="resourceId", - ) - _element.source_type = AAZStrType( - serialized_name="sourceType", - ) - - system_data = _schema_azure_traffic_collector_read.properties.collector_policies.Element.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - flags={"read_only": True}, - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", flags={"read_only": True}, ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - flags={"read_only": True}, - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - flags={"read_only": True}, - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - flags={"read_only": True}, - ) - - tags = _schema_azure_traffic_collector_read.properties.collector_policies.Element.tags - tags.Element = AAZStrType() + _build_schema_resource_reference_read(properties.virtual_hub) - virtual_hub = _schema_azure_traffic_collector_read.properties.virtual_hub - virtual_hub.id = AAZStrType( + collector_policies = _schema_azure_traffic_collector_read.properties.collector_policies + collector_policies.Element = AAZObjectType( flags={"read_only": True}, ) + _build_schema_resource_reference_read(collector_policies.Element) system_data = _schema_azure_traffic_collector_read.system_data system_data.created_at = AAZStrType( @@ -656,4 +432,25 @@ def _build_schema_azure_traffic_collector_read(_schema): _schema.type = _schema_azure_traffic_collector_read.type +_schema_resource_reference_read = None + + +def _build_schema_resource_reference_read(_schema): + global _schema_resource_reference_read + if _schema_resource_reference_read is not None: + _schema.id = _schema_resource_reference_read.id + return + + _schema_resource_reference_read = AAZObjectType( + flags={"read_only": True} + ) + + resource_reference_read = _schema_resource_reference_read + resource_reference_read.id = AAZStrType( + flags={"read_only": True}, + ) + + _schema.id = _schema_resource_reference_read.id + + __all__ = ["Update"] diff --git a/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/_wait.py b/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/_wait.py index 7ab5cc57105..4ea05f7feb6 100644 --- a/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/_wait.py +++ b/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/_wait.py @@ -20,7 +20,7 @@ class Wait(AAZWaitCommand): _aaz_info = { "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.networkfunction/azuretrafficcollectors/{}", "2022-08-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.networkfunction/azuretrafficcollectors/{}", "2022-11-01"], ] } @@ -52,7 +52,17 @@ def _build_arguments_schema(cls, *args, **kwargs): return cls._args_schema def _execute_operations(self): + self.pre_operations() self.AzureTrafficCollectorsGet(ctx=self.ctx)() + self.post_operations() + + # @register_callback + def pre_operations(self): + pass + + # @register_callback + def post_operations(self): + pass def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance, client_flatten=False) @@ -106,7 +116,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-08-01", + "api-version", "2022-11-01", required=True, ), } @@ -166,6 +176,7 @@ def _build_schema_on_200(cls): properties = cls._schema_on_200.properties properties.collector_policies = AAZListType( serialized_name="collectorPolicies", + flags={"read_only": True}, ) properties.provisioning_state = AAZStrType( serialized_name="provisioningState", @@ -173,115 +184,15 @@ def _build_schema_on_200(cls): ) properties.virtual_hub = AAZObjectType( serialized_name="virtualHub", - ) - - collector_policies = cls._schema_on_200.properties.collector_policies - collector_policies.Element = AAZObjectType() - - _element = cls._schema_on_200.properties.collector_policies.Element - _element.etag = AAZStrType( - flags={"read_only": True}, - ) - _element.id = AAZStrType( - flags={"read_only": True}, - ) - _element.location = AAZStrType( - flags={"required": True}, - ) - _element.name = AAZStrType( - flags={"read_only": True}, - ) - _element.properties = AAZObjectType( - flags={"client_flatten": True}, - ) - _element.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _element.tags = AAZDictType() - _element.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = cls._schema_on_200.properties.collector_policies.Element.properties - properties.emission_policies = AAZListType( - serialized_name="emissionPolicies", - ) - properties.ingestion_policy = AAZObjectType( - serialized_name="ingestionPolicy", - ) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - - emission_policies = cls._schema_on_200.properties.collector_policies.Element.properties.emission_policies - emission_policies.Element = AAZObjectType() - - _element = cls._schema_on_200.properties.collector_policies.Element.properties.emission_policies.Element - _element.emission_destinations = AAZListType( - serialized_name="emissionDestinations", - ) - _element.emission_type = AAZStrType( - serialized_name="emissionType", - ) - - emission_destinations = cls._schema_on_200.properties.collector_policies.Element.properties.emission_policies.Element.emission_destinations - emission_destinations.Element = AAZObjectType() - - _element = cls._schema_on_200.properties.collector_policies.Element.properties.emission_policies.Element.emission_destinations.Element - _element.destination_type = AAZStrType( - serialized_name="destinationType", - ) - - ingestion_policy = cls._schema_on_200.properties.collector_policies.Element.properties.ingestion_policy - ingestion_policy.ingestion_sources = AAZListType( - serialized_name="ingestionSources", - ) - ingestion_policy.ingestion_type = AAZStrType( - serialized_name="ingestionType", - ) - - ingestion_sources = cls._schema_on_200.properties.collector_policies.Element.properties.ingestion_policy.ingestion_sources - ingestion_sources.Element = AAZObjectType() - - _element = cls._schema_on_200.properties.collector_policies.Element.properties.ingestion_policy.ingestion_sources.Element - _element.resource_id = AAZStrType( - serialized_name="resourceId", - ) - _element.source_type = AAZStrType( - serialized_name="sourceType", - ) - - system_data = cls._schema_on_200.properties.collector_policies.Element.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - flags={"read_only": True}, - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - flags={"read_only": True}, - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", flags={"read_only": True}, ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - flags={"read_only": True}, - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - flags={"read_only": True}, - ) - - tags = cls._schema_on_200.properties.collector_policies.Element.tags - tags.Element = AAZStrType() + _build_schema_resource_reference_read(properties.virtual_hub) - virtual_hub = cls._schema_on_200.properties.virtual_hub - virtual_hub.id = AAZStrType( + collector_policies = cls._schema_on_200.properties.collector_policies + collector_policies.Element = AAZObjectType( flags={"read_only": True}, ) + _build_schema_resource_reference_read(collector_policies.Element) system_data = cls._schema_on_200.system_data system_data.created_at = AAZStrType( @@ -311,4 +222,25 @@ def _build_schema_on_200(cls): return cls._schema_on_200 +_schema_resource_reference_read = None + + +def _build_schema_resource_reference_read(_schema): + global _schema_resource_reference_read + if _schema_resource_reference_read is not None: + _schema.id = _schema_resource_reference_read.id + return + + _schema_resource_reference_read = AAZObjectType( + flags={"read_only": True} + ) + + resource_reference_read = _schema_resource_reference_read + resource_reference_read.id = AAZStrType( + flags={"read_only": True}, + ) + + _schema.id = _schema_resource_reference_read.id + + __all__ = ["Wait"] diff --git a/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/collector_policy/_create.py b/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/collector_policy/_create.py index 18bc32a69b6..90884a03746 100644 --- a/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/collector_policy/_create.py +++ b/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/collector_policy/_create.py @@ -22,9 +22,9 @@ class Create(AAZCommand): """ _aaz_info = { - "version": "2022-08-01", + "version": "2022-11-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.networkfunction/azuretrafficcollectors/{}/collectorpolicies/{}", "2022-08-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.networkfunction/azuretrafficcollectors/{}/collectorpolicies/{}", "2022-11-01"], ] } @@ -146,7 +146,17 @@ def _build_arguments_schema(cls, *args, **kwargs): return cls._args_schema def _execute_operations(self): + self.pre_operations() yield self.CollectorPoliciesCreateOrUpdate(ctx=self.ctx)() + self.post_operations() + + # @register_callback + def pre_operations(self): + pass + + # @register_callback + def post_operations(self): + pass def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) @@ -220,7 +230,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-08-01", + "api-version", "2022-11-01", required=True, ), } diff --git a/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/collector_policy/_delete.py b/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/collector_policy/_delete.py index 4985f0e68be..217dadccec5 100644 --- a/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/collector_policy/_delete.py +++ b/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/collector_policy/_delete.py @@ -23,9 +23,9 @@ class Delete(AAZCommand): """ _aaz_info = { - "version": "2022-08-01", + "version": "2022-11-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.networkfunction/azuretrafficcollectors/{}/collectorpolicies/{}", "2022-08-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.networkfunction/azuretrafficcollectors/{}/collectorpolicies/{}", "2022-11-01"], ] } @@ -64,7 +64,17 @@ def _build_arguments_schema(cls, *args, **kwargs): return cls._args_schema def _execute_operations(self): + self.pre_operations() yield self.CollectorPoliciesDelete(ctx=self.ctx)() + self.post_operations() + + # @register_callback + def pre_operations(self): + pass + + # @register_callback + def post_operations(self): + pass class CollectorPoliciesDelete(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" @@ -143,7 +153,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-08-01", + "api-version", "2022-11-01", required=True, ), } diff --git a/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/collector_policy/_list.py b/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/collector_policy/_list.py index 98196785f0c..bd8122473cb 100644 --- a/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/collector_policy/_list.py +++ b/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/collector_policy/_list.py @@ -22,9 +22,9 @@ class List(AAZCommand): """ _aaz_info = { - "version": "2022-08-01", + "version": "2022-11-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.networkfunction/azuretrafficcollectors/{}/collectorpolicies", "2022-08-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.networkfunction/azuretrafficcollectors/{}/collectorpolicies", "2022-11-01"], ] } @@ -54,7 +54,17 @@ def _build_arguments_schema(cls, *args, **kwargs): return cls._args_schema def _execute_operations(self): + self.pre_operations() self.CollectorPoliciesList(ctx=self.ctx)() + self.post_operations() + + # @register_callback + def pre_operations(self): + pass + + # @register_callback + def post_operations(self): + pass def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance.value, client_flatten=True) @@ -109,7 +119,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-08-01", + "api-version", "2022-11-01", required=True, ), } diff --git a/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/collector_policy/_show.py b/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/collector_policy/_show.py index dd4d85827f1..a5c8f0eb9a1 100644 --- a/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/collector_policy/_show.py +++ b/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/collector_policy/_show.py @@ -22,9 +22,9 @@ class Show(AAZCommand): """ _aaz_info = { - "version": "2022-08-01", + "version": "2022-11-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.networkfunction/azuretrafficcollectors/{}/collectorpolicies/{}", "2022-08-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.networkfunction/azuretrafficcollectors/{}/collectorpolicies/{}", "2022-11-01"], ] } @@ -62,7 +62,17 @@ def _build_arguments_schema(cls, *args, **kwargs): return cls._args_schema def _execute_operations(self): + self.pre_operations() self.CollectorPoliciesGet(ctx=self.ctx)() + self.post_operations() + + # @register_callback + def pre_operations(self): + pass + + # @register_callback + def post_operations(self): + pass def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) @@ -120,7 +130,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-08-01", + "api-version", "2022-11-01", required=True, ), } diff --git a/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/collector_policy/_update.py b/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/collector_policy/_update.py index 89e5572875f..2dbbe03d116 100644 --- a/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/collector_policy/_update.py +++ b/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/collector_policy/_update.py @@ -22,9 +22,9 @@ class Update(AAZCommand): """ _aaz_info = { - "version": "2022-08-01", + "version": "2022-11-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.networkfunction/azuretrafficcollectors/{}/collectorpolicies/{}", "2022-08-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.networkfunction/azuretrafficcollectors/{}/collectorpolicies/{}", "2022-11-01"], ] } @@ -66,6 +66,13 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "Parameters" _args_schema = cls._args_schema + _args_schema.location = AAZResourceLocationArg( + arg_group="Parameters", + help="Resource location.", + fmt=AAZResourceLocationArgFormat( + resource_group_arg="resource_group", + ), + ) _args_schema.tags = AAZDictArg( options=["--tags"], arg_group="Parameters", @@ -158,10 +165,30 @@ def _build_arguments_schema(cls, *args, **kwargs): return cls._args_schema def _execute_operations(self): + self.pre_operations() self.CollectorPoliciesGet(ctx=self.ctx)() + self.pre_instance_update(self.ctx.vars.instance) self.InstanceUpdateByJson(ctx=self.ctx)() self.InstanceUpdateByGeneric(ctx=self.ctx)() + self.post_instance_update(self.ctx.vars.instance) yield self.CollectorPoliciesCreateOrUpdate(ctx=self.ctx)() + self.post_operations() + + # @register_callback + def pre_operations(self): + pass + + # @register_callback + def post_operations(self): + pass + + # @register_callback + def pre_instance_update(self, instance): + pass + + # @register_callback + def post_instance_update(self, instance): + pass def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) @@ -219,7 +246,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-08-01", + "api-version", "2022-11-01", required=True, ), } @@ -322,7 +349,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-08-01", + "api-version", "2022-11-01", required=True, ), } @@ -380,6 +407,7 @@ def _update_instance(self, instance): value=instance, typ=AAZObjectType ) + _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}}) _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) _builder.set_prop("tags", AAZDictType, ".tags") diff --git a/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/collector_policy/_wait.py b/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/collector_policy/_wait.py index e288e2c4e06..d46c50eca39 100644 --- a/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/collector_policy/_wait.py +++ b/src/traffic-collector/azext_traffic_collector/aaz/latest/network_function/traffic_collector/collector_policy/_wait.py @@ -20,7 +20,7 @@ class Wait(AAZWaitCommand): _aaz_info = { "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.networkfunction/azuretrafficcollectors/{}/collectorpolicies/{}", "2022-08-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.networkfunction/azuretrafficcollectors/{}/collectorpolicies/{}", "2022-11-01"], ] } @@ -58,7 +58,17 @@ def _build_arguments_schema(cls, *args, **kwargs): return cls._args_schema def _execute_operations(self): + self.pre_operations() self.CollectorPoliciesGet(ctx=self.ctx)() + self.post_operations() + + # @register_callback + def pre_operations(self): + pass + + # @register_callback + def post_operations(self): + pass def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance, client_flatten=False) @@ -116,7 +126,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-08-01", + "api-version", "2022-11-01", required=True, ), } diff --git a/src/traffic-collector/azext_traffic_collector/azext_metadata.json b/src/traffic-collector/azext_traffic_collector/azext_metadata.json index 1703199b411..8d0d021acd8 100644 --- a/src/traffic-collector/azext_traffic_collector/azext_metadata.json +++ b/src/traffic-collector/azext_traffic_collector/azext_metadata.json @@ -1,4 +1,4 @@ { "azext.isPreview": true, - "azext.minCliCoreVersion": "2.39.0" + "azext.minCliCoreVersion": "2.40.0" } \ No newline at end of file diff --git a/src/traffic-collector/azext_traffic_collector/tests/latest/recordings/test_azure_traffic_scenario.yaml b/src/traffic-collector/azext_traffic_collector/tests/latest/recordings/test_azure_traffic_scenario.yaml index 544c126e1de..1bff5dead6d 100644 --- a/src/traffic-collector/azext_traffic_collector/tests/latest/recordings/test_azure_traffic_scenario.yaml +++ b/src/traffic-collector/azext_traffic_collector/tests/latest/recordings/test_azure_traffic_scenario.yaml @@ -17,19 +17,19 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002?api-version=2022-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"collectorPolicies\": [],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002\",\r\n \ \"name\": \"cli_test_atc-000002\",\r\n \"type\": \"Microsoft.NetworkFunction/AzureTrafficCollectors\",\r\n - \ \"etag\": \"8d4165eb-e798-4c02-8da7-7b9fe62f2f1b\",\r\n \"location\": \"westus\",\r\n + \ \"etag\": \"86e31116-a8f3-4d1a-8688-967927649c20\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {\r\n \"foo\": \"doo\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 cache-control: - no-cache content-length: @@ -37,7 +37,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:53:19 GMT + - Mon, 17 Oct 2022 02:02:06 GMT expires: - '-1' pragma: @@ -73,9 +73,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -87,7 +87,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:53:29 GMT + - Mon, 17 Oct 2022 02:02:16 GMT expires: - '-1' pragma: @@ -125,9 +125,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -139,7 +139,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:53:40 GMT + - Mon, 17 Oct 2022 02:02:27 GMT expires: - '-1' pragma: @@ -177,9 +177,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -191,7 +191,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:53:50 GMT + - Mon, 17 Oct 2022 02:02:37 GMT expires: - '-1' pragma: @@ -229,9 +229,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -243,7 +243,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:54:00 GMT + - Mon, 17 Oct 2022 02:02:47 GMT expires: - '-1' pragma: @@ -281,9 +281,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -295,7 +295,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:54:10 GMT + - Mon, 17 Oct 2022 02:02:57 GMT expires: - '-1' pragma: @@ -333,9 +333,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -347,7 +347,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:54:20 GMT + - Mon, 17 Oct 2022 02:03:07 GMT expires: - '-1' pragma: @@ -385,9 +385,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -399,7 +399,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:54:30 GMT + - Mon, 17 Oct 2022 02:03:17 GMT expires: - '-1' pragma: @@ -437,9 +437,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -451,7 +451,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:54:40 GMT + - Mon, 17 Oct 2022 02:03:27 GMT expires: - '-1' pragma: @@ -489,9 +489,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -503,7 +503,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:54:50 GMT + - Mon, 17 Oct 2022 02:03:37 GMT expires: - '-1' pragma: @@ -541,9 +541,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -555,7 +555,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:55:01 GMT + - Mon, 17 Oct 2022 02:03:47 GMT expires: - '-1' pragma: @@ -593,9 +593,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -607,7 +607,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:55:11 GMT + - Mon, 17 Oct 2022 02:03:58 GMT expires: - '-1' pragma: @@ -645,9 +645,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -659,7 +659,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:55:21 GMT + - Mon, 17 Oct 2022 02:04:08 GMT expires: - '-1' pragma: @@ -697,9 +697,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -711,7 +711,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:55:31 GMT + - Mon, 17 Oct 2022 02:04:19 GMT expires: - '-1' pragma: @@ -749,9 +749,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -763,7 +763,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:55:41 GMT + - Mon, 17 Oct 2022 02:04:29 GMT expires: - '-1' pragma: @@ -801,9 +801,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -815,7 +815,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:55:51 GMT + - Mon, 17 Oct 2022 02:04:39 GMT expires: - '-1' pragma: @@ -853,9 +853,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -867,7 +867,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:56:01 GMT + - Mon, 17 Oct 2022 02:04:49 GMT expires: - '-1' pragma: @@ -905,9 +905,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -919,7 +919,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:56:11 GMT + - Mon, 17 Oct 2022 02:04:59 GMT expires: - '-1' pragma: @@ -957,9 +957,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -971,7 +971,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:56:22 GMT + - Mon, 17 Oct 2022 02:05:09 GMT expires: - '-1' pragma: @@ -1009,9 +1009,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1023,7 +1023,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:56:32 GMT + - Mon, 17 Oct 2022 02:05:19 GMT expires: - '-1' pragma: @@ -1061,9 +1061,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1075,7 +1075,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:56:42 GMT + - Mon, 17 Oct 2022 02:05:29 GMT expires: - '-1' pragma: @@ -1113,9 +1113,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1127,7 +1127,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:56:52 GMT + - Mon, 17 Oct 2022 02:05:39 GMT expires: - '-1' pragma: @@ -1165,9 +1165,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1179,7 +1179,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:57:02 GMT + - Mon, 17 Oct 2022 02:05:49 GMT expires: - '-1' pragma: @@ -1217,9 +1217,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1231,7 +1231,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:57:12 GMT + - Mon, 17 Oct 2022 02:05:59 GMT expires: - '-1' pragma: @@ -1269,9 +1269,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1283,7 +1283,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:57:23 GMT + - Mon, 17 Oct 2022 02:06:11 GMT expires: - '-1' pragma: @@ -1321,9 +1321,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1335,7 +1335,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:57:33 GMT + - Mon, 17 Oct 2022 02:06:21 GMT expires: - '-1' pragma: @@ -1373,9 +1373,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1387,7 +1387,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:57:43 GMT + - Mon, 17 Oct 2022 02:06:31 GMT expires: - '-1' pragma: @@ -1425,9 +1425,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1439,7 +1439,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:57:53 GMT + - Mon, 17 Oct 2022 02:06:41 GMT expires: - '-1' pragma: @@ -1477,9 +1477,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1491,7 +1491,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:58:03 GMT + - Mon, 17 Oct 2022 02:06:51 GMT expires: - '-1' pragma: @@ -1529,9 +1529,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1543,7 +1543,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:58:13 GMT + - Mon, 17 Oct 2022 02:07:01 GMT expires: - '-1' pragma: @@ -1581,9 +1581,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1595,7 +1595,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:58:23 GMT + - Mon, 17 Oct 2022 02:07:11 GMT expires: - '-1' pragma: @@ -1633,9 +1633,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1647,7 +1647,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:58:33 GMT + - Mon, 17 Oct 2022 02:07:21 GMT expires: - '-1' pragma: @@ -1685,9 +1685,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1699,7 +1699,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:58:44 GMT + - Mon, 17 Oct 2022 02:07:31 GMT expires: - '-1' pragma: @@ -1737,9 +1737,9 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1751,7 +1751,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:58:54 GMT + - Mon, 17 Oct 2022 02:07:41 GMT expires: - '-1' pragma: @@ -1789,21 +1789,21 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/77053903-c048-40f0-9195-12dbba90954e?api-version=2022-11-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '29' content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:59:04 GMT + - Mon, 17 Oct 2022 02:07:51 GMT expires: - '-1' pragma: @@ -1841,21 +1841,27 @@ interactions: ParameterSetName: - --resource-group --name --location --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002?api-version=2022-11-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"properties\": {\r\n \"collectorPolicies\": [],\r\n \"provisioningState\": + \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002\",\r\n + \ \"name\": \"cli_test_atc-000002\",\r\n \"type\": \"Microsoft.NetworkFunction/AzureTrafficCollectors\",\r\n + \ \"etag\": \"86e31116-a8f3-4d1a-8688-967927649c20\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {\r\n \"foo\": \"doo\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '503' content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:59:14 GMT + - Mon, 17 Oct 2022 02:07:51 GMT + etag: + - '"86e31116-a8f3-4d1a-8688-967927649c20"' expires: - '-1' pragma: @@ -1883,31 +1889,37 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - network-function traffic-collector create + - network-function traffic-collector list Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --tags + - --resource-group User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors?api-version=2022-11-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"collectorPolicies\": + [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002\",\r\n + \ \"name\": \"cli_test_atc-000002\",\r\n \"type\": \"Microsoft.NetworkFunction/AzureTrafficCollectors\",\r\n + \ \"etag\": \"86e31116-a8f3-4d1a-8688-967927649c20\",\r\n \"location\": + \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n }\r\n + \ }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '584' content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:59:24 GMT + - Mon, 17 Oct 2022 02:07:53 GMT expires: - '-1' pragma: @@ -1935,31 +1947,37 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - network-function traffic-collector create + - network-function traffic-collector show Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --tags + - --resource-group --name User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002?api-version=2022-11-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"properties\": {\r\n \"collectorPolicies\": [],\r\n \"provisioningState\": + \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002\",\r\n + \ \"name\": \"cli_test_atc-000002\",\r\n \"type\": \"Microsoft.NetworkFunction/AzureTrafficCollectors\",\r\n + \ \"etag\": \"86e31116-a8f3-4d1a-8688-967927649c20\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {\r\n \"foo\": \"doo\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '503' content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:59:34 GMT + - Mon, 17 Oct 2022 02:07:54 GMT + etag: + - '"86e31116-a8f3-4d1a-8688-967927649c20"' expires: - '-1' pragma: @@ -1987,49 +2005,40 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - network-function traffic-collector create + - network-function traffic-collector update Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --tags + - --resource-group --name --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 + (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_traffic_collector000001?api-version=2021-04-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001","name":"cli_test_azure_traffic_collector000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-10-17T02:02:00Z","Created":"2022-10-17T02:02:04.4836645Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '30' + - '395' content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:59:44 GMT + - Mon, 17 Oct 2022 02:07:54 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding - www-authenticate-dsts: - - http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.windows.net/,certificate-sts-address=https://uswest-dsts.dsts.core.windows.net/v2/wstrust/13/certificate,issued-token-sts-address=https://uswest-dsts.dsts.core.windows.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://uswest-dsts.dsts.core.windows.net/2012/IDstsDiscoveryService,service-dns-name=westus.test.nfvrp.azure.com,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description="The - security token is invalid. Cannot decode base64 encoded string. The input - is not a valid Base-64 string as it contains a non-base 64 character, more - than two padding characters, or an illegal character among the padding characters. - " x-content-type-options: - nosniff status: @@ -2039,31 +2048,37 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - network-function traffic-collector create + - network-function traffic-collector update Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --tags + - --resource-group --name --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002?api-version=2022-11-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"properties\": {\r\n \"collectorPolicies\": [],\r\n \"provisioningState\": + \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002\",\r\n + \ \"name\": \"cli_test_atc-000002\",\r\n \"type\": \"Microsoft.NetworkFunction/AzureTrafficCollectors\",\r\n + \ \"etag\": \"86e31116-a8f3-4d1a-8688-967927649c20\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {\r\n \"foo\": \"doo\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '503' content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 04:59:54 GMT + - Mon, 17 Oct 2022 02:07:54 GMT + etag: + - '"86e31116-a8f3-4d1a-8688-967927649c20"' expires: - '-1' pragma: @@ -2088,34 +2103,44 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "westus", "properties": {}, "tags": {"foo": "doo1"}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - network-function traffic-collector create + - network-function traffic-collector update Connection: - keep-alive + Content-Length: + - '65' + Content-Type: + - application/json ParameterSetName: - - --resource-group --name --location --tags + - --resource-group --name --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002?api-version=2022-11-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"properties\": {\r\n \"collectorPolicies\": [],\r\n \"provisioningState\": + \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002\",\r\n + \ \"name\": \"cli_test_atc-000002\",\r\n \"type\": \"Microsoft.NetworkFunction/AzureTrafficCollectors\",\r\n + \ \"etag\": \"fc37108b-3a10-4564-8b94-bd5c680aec00\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {\r\n \"foo\": \"doo1\"\r\n }\r\n}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/fcc75af3-a5e9-4ae8-8ab2-964f7e7d2937?api-version=2022-11-01 cache-control: - no-cache content-length: - - '30' + - '503' content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:00:05 GMT + - Mon, 17 Oct 2022 02:07:55 GMT expires: - '-1' pragma: @@ -2136,6 +2161,8 @@ interactions: " x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -2147,15 +2174,15 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network-function traffic-collector create + - network-function traffic-collector update Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --tags + - --resource-group --name --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/7a55817b-7420-4c7e-8888-9568e2750745?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/fcc75af3-a5e9-4ae8-8ab2-964f7e7d2937?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2167,7 +2194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:00:15 GMT + - Mon, 17 Oct 2022 02:08:06 GMT expires: - '-1' pragma: @@ -2199,33 +2226,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network-function traffic-collector create + - network-function traffic-collector update Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --tags + - --resource-group --name --tags User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002?api-version=2022-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"collectorPolicies\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002\",\r\n \ \"name\": \"cli_test_atc-000002\",\r\n \"type\": \"Microsoft.NetworkFunction/AzureTrafficCollectors\",\r\n - \ \"etag\": \"8d4165eb-e798-4c02-8da7-7b9fe62f2f1b\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {\r\n \"foo\": \"doo\"\r\n }\r\n}" + \ \"etag\": \"fc37108b-3a10-4564-8b94-bd5c680aec00\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {\r\n \"foo\": \"doo1\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '503' + - '504' content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:00:15 GMT + - Mon, 17 Oct 2022 02:08:06 GMT etag: - - '"8d4165eb-e798-4c02-8da7-7b9fe62f2f1b"' + - '"fc37108b-3a10-4564-8b94-bd5c680aec00"' expires: - '-1' pragma: @@ -2250,40 +2277,48 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "westus", "properties": {"ingestionPolicy": {"ingestionSources": + [{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.Network/expressRouteCircuits/cli_test_cp-000003", + "sourceType": "Resource"}], "ingestionType": "IPFIX"}}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - network-function traffic-collector list + - network-function traffic-collector collector-policy create Connection: - keep-alive + Content-Length: + - '326' + Content-Type: + - application/json ParameterSetName: - - --resource-group + - --resource-group --traffic-collector-name -n -l --ingestion-policy User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors?api-version=2022-08-01 + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002/collectorPolicies/cli_test_cp-000003?api-version=2022-11-01 response: body: - string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"collectorPolicies\": - [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002\",\r\n - \ \"name\": \"cli_test_atc-000002\",\r\n \"type\": \"Microsoft.NetworkFunction/AzureTrafficCollectors\",\r\n - \ \"etag\": \"8d4165eb-e798-4c02-8da7-7b9fe62f2f1b\",\r\n \"location\": - \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n }\r\n - \ }\r\n ]\r\n}" + string: "{\r\n \"properties\": {\r\n \"ingestionPolicy\": {\r\n \"ingestionType\": + \"IPFIX\",\r\n \"ingestionSources\": [\r\n {\r\n \"sourceType\": + \"Resource\",\r\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.Network/expressRouteCircuits/cli_test_cp-000003\"\r\n + \ }\r\n ]\r\n },\r\n \"emissionPolicies\": [],\r\n \"processingPolcies\": + [],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002/collectorPolicies/cli_test_cp-000003\",\r\n + \ \"name\": \"cli_test_cp-000003\",\r\n \"type\": \"Microsoft.NetworkFunction/AzureTrafficCollectors/CollectorPolicies\",\r\n + \ \"etag\": \"b2b13f1e-b8cc-41f7-92d9-c7ce0be3928d\",\r\n \"location\": \"westus\"\r\n}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/07edc403-1abc-42da-88ad-bb36ccd1bf78?api-version=2022-11-01 cache-control: - no-cache content-length: - - '584' + - '913' content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:00:15 GMT + - Mon, 17 Oct 2022 02:08:08 GMT expires: - '-1' pragma: @@ -2292,10 +2327,6 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding www-authenticate-dsts: - http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.windows.net/,certificate-sts-address=https://uswest-dsts.dsts.core.windows.net/v2/wstrust/13/certificate,issued-token-sts-address=https://uswest-dsts.dsts.core.windows.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://uswest-dsts.dsts.core.windows.net/2012/IDstsDiscoveryService,service-dns-name=westus.test.nfvrp.azure.com,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description="The security token is invalid. Cannot decode base64 encoded string. The input @@ -2304,44 +2335,40 @@ interactions: " x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network-function traffic-collector show + - network-function traffic-collector collector-policy create Connection: - keep-alive ParameterSetName: - - --resource-group --name + - --resource-group --traffic-collector-name -n -l --ingestion-policy User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/07edc403-1abc-42da-88ad-bb36ccd1bf78?api-version=2022-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"collectorPolicies\": [],\r\n \"provisioningState\": - \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002\",\r\n - \ \"name\": \"cli_test_atc-000002\",\r\n \"type\": \"Microsoft.NetworkFunction/AzureTrafficCollectors\",\r\n - \ \"etag\": \"8d4165eb-e798-4c02-8da7-7b9fe62f2f1b\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {\r\n \"foo\": \"doo\"\r\n }\r\n}" + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '503' + - '29' content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:00:16 GMT - etag: - - '"8d4165eb-e798-4c02-8da7-7b9fe62f2f1b"' + - Mon, 17 Oct 2022 02:08:18 GMT expires: - '-1' pragma: @@ -2369,37 +2396,39 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network-function traffic-collector update + - network-function traffic-collector collector-policy create Connection: - keep-alive ParameterSetName: - - --resource-group --name --tags + - --resource-group --traffic-collector-name -n -l --ingestion-policy User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002/collectorPolicies/cli_test_cp-000003?api-version=2022-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"collectorPolicies\": [],\r\n \"provisioningState\": - \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002\",\r\n - \ \"name\": \"cli_test_atc-000002\",\r\n \"type\": \"Microsoft.NetworkFunction/AzureTrafficCollectors\",\r\n - \ \"etag\": \"8d4165eb-e798-4c02-8da7-7b9fe62f2f1b\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {\r\n \"foo\": \"doo\"\r\n }\r\n}" + string: "{\r\n \"properties\": {\r\n \"ingestionPolicy\": {\r\n \"ingestionType\": + \"IPFIX\",\r\n \"ingestionSources\": [\r\n {\r\n \"sourceType\": + \"Resource\",\r\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.Network/expressRouteCircuits/cli_test_cp-000003\"\r\n + \ }\r\n ]\r\n },\r\n \"emissionPolicies\": [],\r\n \"processingPolcies\": + [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002/collectorPolicies/cli_test_cp-000003\",\r\n + \ \"name\": \"cli_test_cp-000003\",\r\n \"type\": \"Microsoft.NetworkFunction/AzureTrafficCollectors/CollectorPolicies\",\r\n + \ \"etag\": \"b2b13f1e-b8cc-41f7-92d9-c7ce0be3928d\",\r\n \"location\": \"westus\"\r\n}" headers: cache-control: - no-cache content-length: - - '503' + - '914' content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:00:16 GMT + - Mon, 17 Oct 2022 02:08:18 GMT etag: - - '"8d4165eb-e798-4c02-8da7-7b9fe62f2f1b"' + - '"b2b13f1e-b8cc-41f7-92d9-c7ce0be3928d"' expires: - '-1' pragma: @@ -2424,45 +2453,42 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus", "properties": {"collectorPolicies": []}, "tags": - {"foo": "doo1"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - network-function traffic-collector update + - network-function traffic-collector collector-policy show Connection: - keep-alive - Content-Length: - - '88' - Content-Type: - - application/json ParameterSetName: - - --resource-group --name --tags + - --resource-group --traffic-collector-name -n User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002?api-version=2022-08-01 + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002/collectorPolicies/cli_test_cp-000003?api-version=2022-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"collectorPolicies\": [],\r\n \"provisioningState\": - \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002\",\r\n - \ \"name\": \"cli_test_atc-000002\",\r\n \"type\": \"Microsoft.NetworkFunction/AzureTrafficCollectors\",\r\n - \ \"etag\": \"4b8181c9-426e-4e83-97f3-83f72e74c517\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {\r\n \"foo\": \"doo1\"\r\n }\r\n}" + string: "{\r\n \"properties\": {\r\n \"ingestionPolicy\": {\r\n \"ingestionType\": + \"IPFIX\",\r\n \"ingestionSources\": [\r\n {\r\n \"sourceType\": + \"Resource\",\r\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.Network/expressRouteCircuits/cli_test_cp-000003\"\r\n + \ }\r\n ]\r\n },\r\n \"emissionPolicies\": [],\r\n \"processingPolcies\": + [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002/collectorPolicies/cli_test_cp-000003\",\r\n + \ \"name\": \"cli_test_cp-000003\",\r\n \"type\": \"Microsoft.NetworkFunction/AzureTrafficCollectors/CollectorPolicies\",\r\n + \ \"etag\": \"b2b13f1e-b8cc-41f7-92d9-c7ce0be3928d\",\r\n \"location\": \"westus\"\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/58196799-d4e0-4389-9fd2-8b8099111751?api-version=2022-08-01 cache-control: - no-cache content-length: - - '503' + - '914' content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:00:17 GMT + - Mon, 17 Oct 2022 02:08:20 GMT + etag: + - '"b2b13f1e-b8cc-41f7-92d9-c7ce0be3928d"' expires: - '-1' pragma: @@ -2483,8 +2509,6 @@ interactions: " x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -2492,49 +2516,40 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - network-function traffic-collector update + - network-function traffic-collector collector-policy update Connection: - keep-alive ParameterSetName: - - --resource-group --name --tags + - --resource-group --traffic-collector-name -n --emission-policies User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 + (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/58196799-d4e0-4389-9fd2-8b8099111751?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_traffic_collector000001?api-version=2021-04-01 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001","name":"cli_test_azure_traffic_collector000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-10-17T02:02:00Z","Created":"2022-10-17T02:02:04.4836645Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '29' + - '395' content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:00:27 GMT + - Mon, 17 Oct 2022 02:08:20 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding - www-authenticate-dsts: - - http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.windows.net/,certificate-sts-address=https://uswest-dsts.dsts.core.windows.net/v2/wstrust/13/certificate,issued-token-sts-address=https://uswest-dsts.dsts.core.windows.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://uswest-dsts.dsts.core.windows.net/2012/IDstsDiscoveryService,service-dns-name=westus.test.nfvrp.azure.com,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description="The - security token is invalid. Cannot decode base64 encoded string. The input - is not a valid Base-64 string as it contains a non-base 64 character, more - than two padding characters, or an illegal character among the padding characters. - " x-content-type-options: - nosniff status: @@ -2544,37 +2559,39 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - network-function traffic-collector update + - network-function traffic-collector collector-policy update Connection: - keep-alive ParameterSetName: - - --resource-group --name --tags + - --resource-group --traffic-collector-name -n --emission-policies User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002/collectorPolicies/cli_test_cp-000003?api-version=2022-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"collectorPolicies\": [],\r\n \"provisioningState\": - \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002\",\r\n - \ \"name\": \"cli_test_atc-000002\",\r\n \"type\": \"Microsoft.NetworkFunction/AzureTrafficCollectors\",\r\n - \ \"etag\": \"4b8181c9-426e-4e83-97f3-83f72e74c517\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {\r\n \"foo\": \"doo1\"\r\n }\r\n}" + string: "{\r\n \"properties\": {\r\n \"ingestionPolicy\": {\r\n \"ingestionType\": + \"IPFIX\",\r\n \"ingestionSources\": [\r\n {\r\n \"sourceType\": + \"Resource\",\r\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.Network/expressRouteCircuits/cli_test_cp-000003\"\r\n + \ }\r\n ]\r\n },\r\n \"emissionPolicies\": [],\r\n \"processingPolcies\": + [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002/collectorPolicies/cli_test_cp-000003\",\r\n + \ \"name\": \"cli_test_cp-000003\",\r\n \"type\": \"Microsoft.NetworkFunction/AzureTrafficCollectors/CollectorPolicies\",\r\n + \ \"etag\": \"b2b13f1e-b8cc-41f7-92d9-c7ce0be3928d\",\r\n \"location\": \"westus\"\r\n}" headers: cache-control: - no-cache content-length: - - '504' + - '914' content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:00:27 GMT + - Mon, 17 Oct 2022 02:08:20 GMT etag: - - '"4b8181c9-426e-4e83-97f3-83f72e74c517"' + - '"b2b13f1e-b8cc-41f7-92d9-c7ce0be3928d"' expires: - '-1' pragma: @@ -2599,8 +2616,9 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus", "properties": {"ingestionPolicy": {"ingestionSources": - [{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.Network/expressRouteCircuits/cli_test_cp-000003", + body: '{"location": "westus", "properties": {"emissionPolicies": [{"emissionDestinations": + [{"destinationType": "AzureMonitor"}], "emissionType": "IPFIX"}], "ingestionPolicy": + {"ingestionSources": [{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.Network/expressRouteCircuits/cli_test_cp-000003", "sourceType": "Resource"}], "ingestionType": "IPFIX"}}}' headers: Accept: @@ -2608,39 +2626,42 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network-function traffic-collector collector-policy create + - network-function traffic-collector collector-policy update Connection: - keep-alive Content-Length: - - '326' + - '438' Content-Type: - application/json ParameterSetName: - - --resource-group --traffic-collector-name -n -l --ingestion-policy + - --resource-group --traffic-collector-name -n --emission-policies User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002/collectorPolicies/cli_test_cp-000003?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002/collectorPolicies/cli_test_cp-000003?api-version=2022-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"ingestionPolicy\": {\r\n \"ingestionType\": \"IPFIX\",\r\n \"ingestionSources\": [\r\n {\r\n \"sourceType\": \"Resource\",\r\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.Network/expressRouteCircuits/cli_test_cp-000003\"\r\n - \ }\r\n ]\r\n },\r\n \"emissionPolicies\": [],\r\n \"processingPolcies\": + \ }\r\n ]\r\n },\r\n \"emissionPolicies\": [\r\n {\r\n + \ \"emissionType\": \"IPFIX\",\r\n \"emissionDestinations\": + [\r\n {\r\n \"destinationType\": \"AzureMonitor\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"processingPolcies\": [],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002/collectorPolicies/cli_test_cp-000003\",\r\n \ \"name\": \"cli_test_cp-000003\",\r\n \"type\": \"Microsoft.NetworkFunction/AzureTrafficCollectors/CollectorPolicies\",\r\n - \ \"etag\": \"507a5cf1-dad8-4b1e-9f60-0e4b700edab2\",\r\n \"location\": \"westus\"\r\n}" + \ \"etag\": \"3f971fb0-c41d-489b-a5cf-51d150afb5f0\",\r\n \"location\": \"westus\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/037fda10-453e-4e6c-acac-3474afac1b5b?api-version=2022-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/8c741749-0978-4dd9-9859-a09435cb449e?api-version=2022-11-01 cache-control: - no-cache content-length: - - '913' + - '1090' content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:00:30 GMT + - Mon, 17 Oct 2022 02:08:21 GMT expires: - '-1' pragma: @@ -2649,6 +2670,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding www-authenticate-dsts: - http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.windows.net/,certificate-sts-address=https://uswest-dsts.dsts.core.windows.net/v2/wstrust/13/certificate,issued-token-sts-address=https://uswest-dsts.dsts.core.windows.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://uswest-dsts.dsts.core.windows.net/2012/IDstsDiscoveryService,service-dns-name=westus.test.nfvrp.azure.com,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description="The security token is invalid. Cannot decode base64 encoded string. The input @@ -2660,8 +2685,8 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -2670,15 +2695,15 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network-function traffic-collector collector-policy create + - network-function traffic-collector collector-policy update Connection: - keep-alive ParameterSetName: - - --resource-group --traffic-collector-name -n -l --ingestion-policy + - --resource-group --traffic-collector-name -n --emission-policies User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/037fda10-453e-4e6c-acac-3474afac1b5b?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/8c741749-0978-4dd9-9859-a09435cb449e?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2690,7 +2715,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:00:40 GMT + - Mon, 17 Oct 2022 02:08:31 GMT expires: - '-1' pragma: @@ -2722,35 +2747,38 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network-function traffic-collector collector-policy create + - network-function traffic-collector collector-policy update Connection: - keep-alive ParameterSetName: - - --resource-group --traffic-collector-name -n -l --ingestion-policy + - --resource-group --traffic-collector-name -n --emission-policies User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002/collectorPolicies/cli_test_cp-000003?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002/collectorPolicies/cli_test_cp-000003?api-version=2022-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"ingestionPolicy\": {\r\n \"ingestionType\": \"IPFIX\",\r\n \"ingestionSources\": [\r\n {\r\n \"sourceType\": \"Resource\",\r\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.Network/expressRouteCircuits/cli_test_cp-000003\"\r\n - \ }\r\n ]\r\n },\r\n \"emissionPolicies\": [],\r\n \"processingPolcies\": + \ }\r\n ]\r\n },\r\n \"emissionPolicies\": [\r\n {\r\n + \ \"emissionType\": \"IPFIX\",\r\n \"emissionDestinations\": + [\r\n {\r\n \"destinationType\": \"AzureMonitor\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"processingPolcies\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002/collectorPolicies/cli_test_cp-000003\",\r\n \ \"name\": \"cli_test_cp-000003\",\r\n \"type\": \"Microsoft.NetworkFunction/AzureTrafficCollectors/CollectorPolicies\",\r\n - \ \"etag\": \"507a5cf1-dad8-4b1e-9f60-0e4b700edab2\",\r\n \"location\": \"westus\"\r\n}" + \ \"etag\": \"3f971fb0-c41d-489b-a5cf-51d150afb5f0\",\r\n \"location\": \"westus\"\r\n}" headers: cache-control: - no-cache content-length: - - '914' + - '1091' content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:00:40 GMT + - Mon, 17 Oct 2022 02:08:31 GMT etag: - - '"507a5cf1-dad8-4b1e-9f60-0e4b700edab2"' + - '"3f971fb0-c41d-489b-a5cf-51d150afb5f0"' expires: - '-1' pragma: @@ -2788,29 +2816,32 @@ interactions: ParameterSetName: - --resource-group --traffic-collector-name -n User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002/collectorPolicies/cli_test_cp-000003?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002/collectorPolicies/cli_test_cp-000003?api-version=2022-11-01 response: body: string: "{\r\n \"properties\": {\r\n \"ingestionPolicy\": {\r\n \"ingestionType\": \"IPFIX\",\r\n \"ingestionSources\": [\r\n {\r\n \"sourceType\": \"Resource\",\r\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.Network/expressRouteCircuits/cli_test_cp-000003\"\r\n - \ }\r\n ]\r\n },\r\n \"emissionPolicies\": [],\r\n \"processingPolcies\": + \ }\r\n ]\r\n },\r\n \"emissionPolicies\": [\r\n {\r\n + \ \"emissionType\": \"IPFIX\",\r\n \"emissionDestinations\": + [\r\n {\r\n \"destinationType\": \"AzureMonitor\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"processingPolcies\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002/collectorPolicies/cli_test_cp-000003\",\r\n \ \"name\": \"cli_test_cp-000003\",\r\n \"type\": \"Microsoft.NetworkFunction/AzureTrafficCollectors/CollectorPolicies\",\r\n - \ \"etag\": \"507a5cf1-dad8-4b1e-9f60-0e4b700edab2\",\r\n \"location\": \"westus\"\r\n}" + \ \"etag\": \"3f971fb0-c41d-489b-a5cf-51d150afb5f0\",\r\n \"location\": \"westus\"\r\n}" headers: cache-control: - no-cache content-length: - - '914' + - '1091' content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:00:41 GMT + - Mon, 17 Oct 2022 02:08:33 GMT etag: - - '"507a5cf1-dad8-4b1e-9f60-0e4b700edab2"' + - '"3f971fb0-c41d-489b-a5cf-51d150afb5f0"' expires: - '-1' pragma: @@ -2838,51 +2869,45 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network-function traffic-collector collector-policy update + - network-function traffic-collector collector-policy delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - --resource-group --traffic-collector-name -n --emission-policies + - --resource-group --traffic-collector-name --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002/collectorPolicies/cli_test_cp-000003?api-version=2022-08-01 + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002/collectorPolicies/cli_test_cp-000003?api-version=2022-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"ingestionPolicy\": {\r\n \"ingestionType\": - \"IPFIX\",\r\n \"ingestionSources\": [\r\n {\r\n \"sourceType\": - \"Resource\",\r\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.Network/expressRouteCircuits/cli_test_cp-000003\"\r\n - \ }\r\n ]\r\n },\r\n \"emissionPolicies\": [],\r\n \"processingPolcies\": - [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002/collectorPolicies/cli_test_cp-000003\",\r\n - \ \"name\": \"cli_test_cp-000003\",\r\n \"type\": \"Microsoft.NetworkFunction/AzureTrafficCollectors/CollectorPolicies\",\r\n - \ \"etag\": \"507a5cf1-dad8-4b1e-9f60-0e4b700edab2\",\r\n \"location\": \"westus\"\r\n}" + string: 'null' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/11fe1ab5-b567-4aef-a167-95c58dbdab82?api-version=2022-11-01 cache-control: - no-cache content-length: - - '914' + - '4' content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:00:41 GMT - etag: - - '"507a5cf1-dad8-4b1e-9f60-0e4b700edab2"' + - Mon, 17 Oct 2022 02:08:33 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperationResults/11fe1ab5-b567-4aef-a167-95c58dbdab82?api-version=2022-11-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding www-authenticate-dsts: - http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.windows.net/,certificate-sts-address=https://uswest-dsts.dsts.core.windows.net/v2/wstrust/13/certificate,issued-token-sts-address=https://uswest-dsts.dsts.core.windows.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://uswest-dsts.dsts.core.windows.net/2012/IDstsDiscoveryService,service-dns-name=westus.test.nfvrp.azure.com,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description="The security token is invalid. Cannot decode base64 encoded string. The input @@ -2891,56 +2916,40 @@ interactions: " x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: - body: '{"location": "westus", "properties": {"emissionPolicies": [{"emissionDestinations": - [{"destinationType": "AzureMonitor"}], "emissionType": "IPFIX"}], "ingestionPolicy": - {"ingestionSources": [{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.Network/expressRouteCircuits/cli_test_cp-000003", - "sourceType": "Resource"}], "ingestionType": "IPFIX"}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network-function traffic-collector collector-policy update + - network-function traffic-collector collector-policy delete Connection: - keep-alive - Content-Length: - - '438' - Content-Type: - - application/json ParameterSetName: - - --resource-group --traffic-collector-name -n --emission-policies + - --resource-group --traffic-collector-name --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002/collectorPolicies/cli_test_cp-000003?api-version=2022-08-01 + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/11fe1ab5-b567-4aef-a167-95c58dbdab82?api-version=2022-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"ingestionPolicy\": {\r\n \"ingestionType\": - \"IPFIX\",\r\n \"ingestionSources\": [\r\n {\r\n \"sourceType\": - \"Resource\",\r\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.Network/expressRouteCircuits/cli_test_cp-000003\"\r\n - \ }\r\n ]\r\n },\r\n \"emissionPolicies\": [\r\n {\r\n - \ \"emissionType\": \"IPFIX\",\r\n \"emissionDestinations\": - [\r\n {\r\n \"destinationType\": \"AzureMonitor\"\r\n - \ }\r\n ]\r\n }\r\n ],\r\n \"processingPolcies\": - [],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002/collectorPolicies/cli_test_cp-000003\",\r\n - \ \"name\": \"cli_test_cp-000003\",\r\n \"type\": \"Microsoft.NetworkFunction/AzureTrafficCollectors/CollectorPolicies\",\r\n - \ \"etag\": \"955125b4-d3b8-4ebd-9e18-cdd87e9bbce2\",\r\n \"location\": \"westus\"\r\n}" + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9d190357-8755-4d64-89b3-16f63c2d751c?api-version=2022-08-01 cache-control: - no-cache content-length: - - '1090' + - '29' content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:00:42 GMT + - Mon, 17 Oct 2022 02:08:43 GMT expires: - '-1' pragma: @@ -2961,8 +2970,6 @@ interactions: " x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -2974,27 +2981,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network-function traffic-collector collector-policy update + - network-function traffic-collector collector-policy delete Connection: - keep-alive ParameterSetName: - - --resource-group --traffic-collector-name -n --emission-policies + - --resource-group --traffic-collector-name --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9d190357-8755-4d64-89b3-16f63c2d751c?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperationResults/11fe1ab5-b567-4aef-a167-95c58dbdab82?api-version=2022-11-01 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: 'null' headers: cache-control: - no-cache content-length: - - '29' + - '4' content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:00:52 GMT + - Mon, 17 Oct 2022 02:08:43 GMT expires: - '-1' pragma: @@ -3026,38 +3033,83 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network-function traffic-collector collector-policy update + - network-function traffic-collector delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - --resource-group --traffic-collector-name -n --emission-policies + - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002?api-version=2022-11-01 + response: + body: + string: 'null' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 + cache-control: + - no-cache + content-length: + - '4' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 17 Oct 2022 02:10:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperationResults/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + www-authenticate-dsts: + - http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.windows.net/,certificate-sts-address=https://uswest-dsts.dsts.core.windows.net/v2/wstrust/13/certificate,issued-token-sts-address=https://uswest-dsts.dsts.core.windows.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://uswest-dsts.dsts.core.windows.net/2012/IDstsDiscoveryService,service-dns-name=westus.test.nfvrp.azure.com,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description="The + security token is invalid. Cannot decode base64 encoded string. The input + is not a valid Base-64 string as it contains a non-base 64 character, more + than two padding characters, or an illegal character among the padding characters. + " + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network-function traffic-collector delete + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --yes + User-Agent: + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002/collectorPolicies/cli_test_cp-000003?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"ingestionPolicy\": {\r\n \"ingestionType\": - \"IPFIX\",\r\n \"ingestionSources\": [\r\n {\r\n \"sourceType\": - \"Resource\",\r\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.Network/expressRouteCircuits/cli_test_cp-000003\"\r\n - \ }\r\n ]\r\n },\r\n \"emissionPolicies\": [\r\n {\r\n - \ \"emissionType\": \"IPFIX\",\r\n \"emissionDestinations\": - [\r\n {\r\n \"destinationType\": \"AzureMonitor\"\r\n - \ }\r\n ]\r\n }\r\n ],\r\n \"processingPolcies\": - [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002/collectorPolicies/cli_test_cp-000003\",\r\n - \ \"name\": \"cli_test_cp-000003\",\r\n \"type\": \"Microsoft.NetworkFunction/AzureTrafficCollectors/CollectorPolicies\",\r\n - \ \"etag\": \"955125b4-d3b8-4ebd-9e18-cdd87e9bbce2\",\r\n \"location\": \"westus\"\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '1091' + - '30' content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:00:52 GMT - etag: - - '"955125b4-d3b8-4ebd-9e18-cdd87e9bbce2"' + - Mon, 17 Oct 2022 02:10:56 GMT expires: - '-1' pragma: @@ -3085,42 +3137,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network-function traffic-collector collector-policy show + - network-function traffic-collector delete Connection: - keep-alive ParameterSetName: - - --resource-group --traffic-collector-name -n + - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002/collectorPolicies/cli_test_cp-000003?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"ingestionPolicy\": {\r\n \"ingestionType\": - \"IPFIX\",\r\n \"ingestionSources\": [\r\n {\r\n \"sourceType\": - \"Resource\",\r\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.Network/expressRouteCircuits/cli_test_cp-000003\"\r\n - \ }\r\n ]\r\n },\r\n \"emissionPolicies\": [\r\n {\r\n - \ \"emissionType\": \"IPFIX\",\r\n \"emissionDestinations\": - [\r\n {\r\n \"destinationType\": \"AzureMonitor\"\r\n - \ }\r\n ]\r\n }\r\n ],\r\n \"processingPolcies\": - [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002/collectorPolicies/cli_test_cp-000003\",\r\n - \ \"name\": \"cli_test_cp-000003\",\r\n \"type\": \"Microsoft.NetworkFunction/AzureTrafficCollectors/CollectorPolicies\",\r\n - \ \"etag\": \"955125b4-d3b8-4ebd-9e18-cdd87e9bbce2\",\r\n \"location\": \"westus\"\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '1091' + - '30' content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:00:52 GMT - etag: - - '"955125b4-d3b8-4ebd-9e18-cdd87e9bbce2"' + - Mon, 17 Oct 2022 02:11:06 GMT expires: - '-1' pragma: @@ -3152,41 +3193,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network-function traffic-collector collector-policy delete + - network-function traffic-collector delete Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - --resource-group --traffic-collector-name --name --yes + - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002/collectorPolicies/cli_test_cp-000003?api-version=2022-08-01 + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: - string: 'null' + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/bc09cd1c-dec1-4c21-96c2-4978713c321b?api-version=2022-08-01 cache-control: - no-cache content-length: - - '4' + - '30' content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:00:54 GMT + - Mon, 17 Oct 2022 02:11:16 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperationResults/bc09cd1c-dec1-4c21-96c2-4978713c321b?api-version=2022-08-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding www-authenticate-dsts: - http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.windows.net/,certificate-sts-address=https://uswest-dsts.dsts.core.windows.net/v2/wstrust/13/certificate,issued-token-sts-address=https://uswest-dsts.dsts.core.windows.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://uswest-dsts.dsts.core.windows.net/2012/IDstsDiscoveryService,service-dns-name=westus.test.nfvrp.azure.com,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description="The security token is invalid. Cannot decode base64 encoded string. The input @@ -3195,11 +3234,9 @@ interactions: " x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3208,27 +3245,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network-function traffic-collector collector-policy delete + - network-function traffic-collector delete Connection: - keep-alive ParameterSetName: - - --resource-group --traffic-collector-name --name --yes + - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/bc09cd1c-dec1-4c21-96c2-4978713c321b?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '29' + - '30' content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:01:04 GMT + - Mon, 17 Oct 2022 02:11:26 GMT expires: - '-1' pragma: @@ -3260,27 +3297,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network-function traffic-collector collector-policy delete + - network-function traffic-collector delete Connection: - keep-alive ParameterSetName: - - --resource-group --traffic-collector-name --name --yes + - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperationResults/bc09cd1c-dec1-4c21-96c2-4978713c321b?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: - string: 'null' + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '4' + - '30' content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:01:04 GMT + - Mon, 17 Oct 2022 02:11:37 GMT expires: - '-1' pragma: @@ -3315,38 +3352,36 @@ interactions: - network-function traffic-collector delete Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_traffic_collector000001/providers/Microsoft.NetworkFunction/azureTrafficCollectors/cli_test_atc-000002?api-version=2022-08-01 + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: - string: 'null' + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 cache-control: - no-cache content-length: - - '4' + - '30' content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:03:06 GMT + - Mon, 17 Oct 2022 02:11:47 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperationResults/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding www-authenticate-dsts: - http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.windows.net/,certificate-sts-address=https://uswest-dsts.dsts.core.windows.net/v2/wstrust/13/certificate,issued-token-sts-address=https://uswest-dsts.dsts.core.windows.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://uswest-dsts.dsts.core.windows.net/2012/IDstsDiscoveryService,service-dns-name=westus.test.nfvrp.azure.com,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description="The security token is invalid. Cannot decode base64 encoded string. The input @@ -3355,11 +3390,9 @@ interactions: " x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3374,9 +3407,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3388,7 +3421,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:03:16 GMT + - Mon, 17 Oct 2022 02:11:57 GMT expires: - '-1' pragma: @@ -3426,9 +3459,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3440,7 +3473,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:03:27 GMT + - Mon, 17 Oct 2022 02:12:07 GMT expires: - '-1' pragma: @@ -3478,9 +3511,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3492,7 +3525,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:03:37 GMT + - Mon, 17 Oct 2022 02:12:17 GMT expires: - '-1' pragma: @@ -3530,9 +3563,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3544,7 +3577,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:03:47 GMT + - Mon, 17 Oct 2022 02:12:27 GMT expires: - '-1' pragma: @@ -3582,9 +3615,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3596,7 +3629,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:03:57 GMT + - Mon, 17 Oct 2022 02:12:37 GMT expires: - '-1' pragma: @@ -3634,9 +3667,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3648,7 +3681,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:04:07 GMT + - Mon, 17 Oct 2022 02:12:47 GMT expires: - '-1' pragma: @@ -3686,9 +3719,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3700,7 +3733,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:04:17 GMT + - Mon, 17 Oct 2022 02:12:57 GMT expires: - '-1' pragma: @@ -3738,9 +3771,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3752,7 +3785,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:04:27 GMT + - Mon, 17 Oct 2022 02:13:07 GMT expires: - '-1' pragma: @@ -3790,9 +3823,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3804,7 +3837,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:04:37 GMT + - Mon, 17 Oct 2022 02:13:18 GMT expires: - '-1' pragma: @@ -3842,9 +3875,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3856,7 +3889,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:04:47 GMT + - Mon, 17 Oct 2022 02:13:28 GMT expires: - '-1' pragma: @@ -3894,9 +3927,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3908,7 +3941,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:04:57 GMT + - Mon, 17 Oct 2022 02:13:39 GMT expires: - '-1' pragma: @@ -3946,9 +3979,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3960,7 +3993,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:05:08 GMT + - Mon, 17 Oct 2022 02:13:49 GMT expires: - '-1' pragma: @@ -3998,9 +4031,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4012,7 +4045,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:05:18 GMT + - Mon, 17 Oct 2022 02:13:59 GMT expires: - '-1' pragma: @@ -4050,9 +4083,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4064,7 +4097,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:05:28 GMT + - Mon, 17 Oct 2022 02:14:09 GMT expires: - '-1' pragma: @@ -4102,9 +4135,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4116,7 +4149,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:05:38 GMT + - Mon, 17 Oct 2022 02:14:19 GMT expires: - '-1' pragma: @@ -4154,9 +4187,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4168,7 +4201,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:05:48 GMT + - Mon, 17 Oct 2022 02:14:29 GMT expires: - '-1' pragma: @@ -4206,9 +4239,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4220,7 +4253,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:05:58 GMT + - Mon, 17 Oct 2022 02:14:39 GMT expires: - '-1' pragma: @@ -4258,9 +4291,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4272,7 +4305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:06:08 GMT + - Mon, 17 Oct 2022 02:14:49 GMT expires: - '-1' pragma: @@ -4310,9 +4343,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4324,7 +4357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:06:18 GMT + - Mon, 17 Oct 2022 02:15:00 GMT expires: - '-1' pragma: @@ -4362,9 +4395,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4376,7 +4409,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:06:28 GMT + - Mon, 17 Oct 2022 02:15:10 GMT expires: - '-1' pragma: @@ -4414,9 +4447,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4428,7 +4461,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:06:39 GMT + - Mon, 17 Oct 2022 02:15:20 GMT expires: - '-1' pragma: @@ -4466,9 +4499,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4480,7 +4513,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:06:49 GMT + - Mon, 17 Oct 2022 02:15:30 GMT expires: - '-1' pragma: @@ -4518,9 +4551,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4532,7 +4565,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:06:59 GMT + - Mon, 17 Oct 2022 02:15:40 GMT expires: - '-1' pragma: @@ -4570,9 +4603,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4584,7 +4617,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:07:09 GMT + - Mon, 17 Oct 2022 02:15:50 GMT expires: - '-1' pragma: @@ -4622,9 +4655,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4636,7 +4669,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:07:19 GMT + - Mon, 17 Oct 2022 02:16:00 GMT expires: - '-1' pragma: @@ -4674,9 +4707,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4688,7 +4721,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:07:29 GMT + - Mon, 17 Oct 2022 02:16:10 GMT expires: - '-1' pragma: @@ -4726,9 +4759,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4740,7 +4773,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:07:39 GMT + - Mon, 17 Oct 2022 02:16:20 GMT expires: - '-1' pragma: @@ -4778,9 +4811,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4792,7 +4825,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:07:49 GMT + - Mon, 17 Oct 2022 02:16:30 GMT expires: - '-1' pragma: @@ -4830,9 +4863,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4844,7 +4877,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:07:59 GMT + - Mon, 17 Oct 2022 02:16:40 GMT expires: - '-1' pragma: @@ -4882,9 +4915,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperations/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -4896,7 +4929,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:08:09 GMT + - Mon, 17 Oct 2022 02:16:51 GMT expires: - '-1' pragma: @@ -4934,9 +4967,9 @@ interactions: ParameterSetName: - --resource-group --name --yes User-Agent: - - AZURECLI/2.39.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 (PIP) (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperationResults/9369d065-2fcc-4ca1-a870-ab49ff97ad70?api-version=2022-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetworkFunction/locations/westus/nfvOperationResults/46758222-b74e-48f6-b43a-3a9323b007d1?api-version=2022-11-01 response: body: string: 'null' @@ -4948,7 +4981,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 02 Sep 2022 05:08:10 GMT + - Mon, 17 Oct 2022 02:16:51 GMT expires: - '-1' pragma: